aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/wlan-ng/p80211meta.h
diff options
context:
space:
mode:
authorEdgardo Hames <ehames@gmail.com>2010-08-02 15:20:39 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2010-08-02 21:20:04 -0400
commitb6bb56e6aa28085550179335247c649752ff2994 (patch)
treeeba1c1f5e3c45289987ec7e7e6e8d0e4c3a4a8d7 /drivers/staging/wlan-ng/p80211meta.h
parente5bdbb90299f7b8d2d88994af8541e7804833e2a (diff)
Staging: wlan-ng: fix checkpatch issues in headers.
This patch fix errors and warnings reported by checkpatch in p80211meta.h and p80211metstruct.h. Signed-off-by: Edgardo Hames <ehames@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/wlan-ng/p80211meta.h')
-rw-r--r--drivers/staging/wlan-ng/p80211meta.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/staging/wlan-ng/p80211meta.h b/drivers/staging/wlan-ng/p80211meta.h
index b9badcff681..c5f1a63add9 100644
--- a/drivers/staging/wlan-ng/p80211meta.h
+++ b/drivers/staging/wlan-ng/p80211meta.h
@@ -62,7 +62,7 @@
62/* representation of category list metadata, group list metadata, */ 62/* representation of category list metadata, group list metadata, */
63/* and data item metadata for both Mib and Messages. */ 63/* and data item metadata for both Mib and Messages. */
64 64
65typedef struct p80211meta { 65struct p80211meta {
66 char *name; /* data item name */ 66 char *name; /* data item name */
67 u32 did; /* partial did */ 67 u32 did; /* partial did */
68 u32 flags; /* set of various flag bits */ 68 u32 flags; /* set of various flag bits */
@@ -75,16 +75,16 @@ typedef struct p80211meta {
75 p80211_totext_t totextptr; /* ptr to totext conversion function */ 75 p80211_totext_t totextptr; /* ptr to totext conversion function */
76 p80211_fromtext_t fromtextptr; /* ptr to totext conversion function */ 76 p80211_fromtext_t fromtextptr; /* ptr to totext conversion function */
77 p80211_valid_t validfunptr; /* ptr to totext conversion function */ 77 p80211_valid_t validfunptr; /* ptr to totext conversion function */
78} p80211meta_t; 78};
79 79
80typedef struct grplistitem { 80struct grplistitem {
81 char *name; 81 char *name;
82 p80211meta_t *itemlist; 82 struct p80211meta *itemlist;
83} grplistitem_t; 83};
84 84
85typedef struct catlistitem { 85struct catlistitem {
86 char *name; 86 char *name;
87 grplistitem_t *grplist; 87 struct grplistitem *grplist;
88} catlistitem_t; 88};
89 89
90#endif /* _P80211META_H */ 90#endif /* _P80211META_H */