From 421a0fcc03dbe73491e2820f057ad8419effb265 Mon Sep 17 00:00:00 2001 From: Moritz Muehlenhoff Date: Sun, 8 Feb 2009 02:20:51 +0100 Subject: [PATCH] --- yaml --- r: 141199 b: refs/heads/master c: 90de180a2972adf16559c4203d989684ab0c6d4f h: refs/heads/master i: 141197: 5c4ec66ce6e0ec44c1c7d7e71cbfcc7eda199e5c 141195: 496ac7c7713dd0dbad663c8c393a6ab2862191f0 141191: 402c852862994cbe19ff586cffda9f18f7bca137 141183: 27ffa9d71f8043470fa1c4d3c058bc34540da655 v: v3 --- [refs] | 2 +- trunk/drivers/staging/wlan-ng/p80211meta.h | 47 +++++++++------------- 2 files changed, 20 insertions(+), 29 deletions(-) diff --git a/[refs] b/[refs] index 010dba70a295..f4b7bfc77a10 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: c7d4bd7d290b4f7a7b9888751df3c951ce35c13b +refs/heads/master: 90de180a2972adf16559c4203d989684ab0c6d4f diff --git a/trunk/drivers/staging/wlan-ng/p80211meta.h b/trunk/drivers/staging/wlan-ng/p80211meta.h index c19df54863ca..9cd36dcc2de4 100644 --- a/trunk/drivers/staging/wlan-ng/p80211meta.h +++ b/trunk/drivers/staging/wlan-ng/p80211meta.h @@ -72,38 +72,29 @@ /* representation of category list metadata, group list metadata, */ /* and data item metadata for both Mib and Messages. */ -typedef struct p80211meta -{ - char *name; /* data item name */ - u32 did; /* partial did */ - u32 flags; /* set of various flag bits */ - u32 min; /* min value of a BOUNDEDint */ - u32 max; /* max value of a BOUNDEDint */ - - u32 maxlen; /* maxlen of a OCTETSTR or DISPLAYSTR */ - u32 minlen; /* minlen of a OCTETSTR or DISPLAYSTR */ - p80211enum_t *enumptr; /* ptr to the enum type for ENUMint */ - p80211_totext_t totextptr; /* ptr to totext conversion function */ - p80211_fromtext_t fromtextptr; /* ptr to totext conversion function */ - p80211_valid_t validfunptr; /* ptr to totext conversion function */ +typedef struct p80211meta { + char *name; /* data item name */ + u32 did; /* partial did */ + u32 flags; /* set of various flag bits */ + u32 min; /* min value of a BOUNDEDint */ + u32 max; /* max value of a BOUNDEDint */ + + u32 maxlen; /* maxlen of a OCTETSTR or DISPLAYSTR */ + u32 minlen; /* minlen of a OCTETSTR or DISPLAYSTR */ + p80211enum_t *enumptr; /* ptr to the enum type for ENUMint */ + p80211_totext_t totextptr; /* ptr to totext conversion function */ + p80211_fromtext_t fromtextptr; /* ptr to totext conversion function */ + p80211_valid_t validfunptr; /* ptr to totext conversion function */ } p80211meta_t; -typedef struct grplistitem -{ - char *name; - p80211meta_t *itemlist; +typedef struct grplistitem { + char *name; + p80211meta_t *itemlist; } grplistitem_t; -typedef struct catlistitem -{ - char *name; - grplistitem_t *grplist; +typedef struct catlistitem { + char *name; + grplistitem_t *grplist; } catlistitem_t; #endif /* _P80211META_H */ - - - - - -