diff options
author | Moritz Muehlenhoff <jmm@debian.org> | 2009-02-08 02:20:58 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-04-03 14:53:22 -0700 |
commit | c27f880c34ed8e702f3c9f0414489e5ebdde84e1 (patch) | |
tree | c92771a9835558d5454f9a8cf11fdbddfd709318 /drivers/staging/wlan-ng/p80211msg.h | |
parent | 356925c71300a02b1b147667b1e2a986cfeae34c (diff) |
Staging: wlan-ng: p80211msg.h: Coding style cleanups
Signed-off-by: Moritz Muehlenhoff <jmm@debian.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/wlan-ng/p80211msg.h')
-rw-r--r-- | drivers/staging/wlan-ng/p80211msg.h | 22 |
1 files changed, 6 insertions, 16 deletions
diff --git a/drivers/staging/wlan-ng/p80211msg.h b/drivers/staging/wlan-ng/p80211msg.h index b6ee6e529d5c..42eb4c6f6cdd 100644 --- a/drivers/staging/wlan-ng/p80211msg.h +++ b/drivers/staging/wlan-ng/p80211msg.h @@ -55,25 +55,15 @@ #include "wlan_compat.h" #endif -/*================================================================*/ -/* Constants */ - #define WLAN_DEVNAMELEN_MAX 16 -/*================================================================*/ -/* Types */ - -/*--------------------------------------------------------------------*/ -/*----- Message Structure Types --------------------------------------*/ - /*--------------------------------------------------------------------*/ /* Prototype msg type */ -typedef struct p80211msg -{ - u32 msgcode; - u32 msglen; - u8 devname[WLAN_DEVNAMELEN_MAX]; -} __attribute__((packed)) p80211msg_t; +typedef struct p80211msg { + u32 msgcode; + u32 msglen; + u8 devname[WLAN_DEVNAMELEN_MAX]; +} __attribute__ ((packed)) p80211msg_t; -#endif /* _P80211MSG_H */ +#endif /* _P80211MSG_H */ |