Commit 8a885ae8 authored by Kevin McKinney's avatar Kevin McKinney Committed by Greg Kroah-Hartman

Staging: bcm: Remove typedef for _S_MIBS_PHS_RULE and call directly.

This patch removes typedef for _S_MIBS_PHS_RULE,
and changes the name of the struct to bcm_mibs_phs_rule.
In addition, any calls to typedef S_MIBS_PHS_RULE are
changed to call the struct directly.
Signed-off-by: default avatarKevin McKinney <klmckinney1@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8c7d51a3
...@@ -98,7 +98,7 @@ typedef struct _S_MIBS_CLASSIFIER_RULE { ...@@ -98,7 +98,7 @@ typedef struct _S_MIBS_CLASSIFIER_RULE {
u32 u32PHSRuleID; u32 u32PHSRuleID;
} S_MIBS_CLASSIFIER_RULE; } S_MIBS_CLASSIFIER_RULE;
typedef struct _S_MIBS_PHS_RULE { struct bcm_mibs_phs_rule {
unsigned long ulSFID; unsigned long ulSFID;
u8 u8PHSI; u8 u8PHSI;
u8 u8PHSFLength; u8 u8PHSFLength;
...@@ -111,7 +111,7 @@ typedef struct _S_MIBS_PHS_RULE { ...@@ -111,7 +111,7 @@ typedef struct _S_MIBS_PHS_RULE {
long PHSModifiedBytes; long PHSModifiedBytes;
unsigned long PHSModifiedNumPackets; unsigned long PHSModifiedNumPackets;
unsigned long PHSErrorNumPackets; unsigned long PHSErrorNumPackets;
} S_MIBS_PHS_RULE; };
struct bcm_mibs_parameters { struct bcm_mibs_parameters {
u32 wmanIfSfid; u32 wmanIfSfid;
...@@ -185,7 +185,7 @@ struct bcm_host_stats_mibs { ...@@ -185,7 +185,7 @@ struct bcm_host_stats_mibs {
S_MIBS_HOST_INFO stHostInfo; S_MIBS_HOST_INFO stHostInfo;
S_MIBS_CLASSIFIER_RULE astClassifierTable[MIBS_MAX_CLASSIFIERS]; S_MIBS_CLASSIFIER_RULE astClassifierTable[MIBS_MAX_CLASSIFIERS];
struct bcm_mibs_table astSFtable[MIBS_MAX_SERVICEFLOWS]; struct bcm_mibs_table astSFtable[MIBS_MAX_SERVICEFLOWS];
S_MIBS_PHS_RULE astPhsRulesTable[MIBS_MAX_PHSRULES]; struct bcm_mibs_phs_rule astPhsRulesTable[MIBS_MAX_PHSRULES];
struct bcm_mibs_dropped_cntrl_msg stDroppedAppCntrlMsgs; struct bcm_mibs_dropped_cntrl_msg stDroppedAppCntrlMsgs;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment