Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 141199
b: refs/heads/master
c: 90de180
h: refs/heads/master
i:
  141197: 5c4ec66
  141195: 496ac7c
  141191: 402c852
  141183: 27ffa9d
v: v3
  • Loading branch information
Moritz Muehlenhoff authored and Greg Kroah-Hartman committed Apr 3, 2009
1 parent 6c291af commit 421a0fc
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 29 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c7d4bd7d290b4f7a7b9888751df3c951ce35c13b
refs/heads/master: 90de180a2972adf16559c4203d989684ab0c6d4f
47 changes: 19 additions & 28 deletions trunk/drivers/staging/wlan-ng/p80211meta.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 */






0 comments on commit 421a0fc

Please sign in to comment.