summaryrefslogtreecommitdiffstats
path: root/drivers/staging/bcm/HostMIBSInterface.h
diff options
context:
space:
mode:
authorKevin McKinney <klmckinney1@gmail.com>2012-11-25 19:28:57 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-11-26 16:07:57 -0800
commit2790a3cc82b864faf924d703640a4f1dc61d8802 (patch)
tree28d19a298eac2a16e821164a21447079fdbe34b2 /drivers/staging/bcm/HostMIBSInterface.h
parent954f91d1afbdb1b7e1870df405c824b68fd145ad (diff)
downloadlinux-2790a3cc82b864faf924d703640a4f1dc61d8802.tar.bz2
Staging: bcm: Remove typedef for _S_MIBS_DROPPED_APP_CNTRL_MESSAGES and call directly.
This patch removes typedef for _S_MIBS_DROPPED_APP_CNTRL_MESSAGES, and changes the name of the struct to bcm_mibs_dropped_cntrl_msg. In addition, any calls to typedef S_MIBS_DROPPED_APP_CNTRL_MESSAGES are changed to call the struct directly. Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/bcm/HostMIBSInterface.h')
-rw-r--r--drivers/staging/bcm/HostMIBSInterface.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/bcm/HostMIBSInterface.h b/drivers/staging/bcm/HostMIBSInterface.h
index 7c7c75618cd7..e697b03e1510 100644
--- a/drivers/staging/bcm/HostMIBSInterface.h
+++ b/drivers/staging/bcm/HostMIBSInterface.h
@@ -170,7 +170,7 @@ typedef struct _S_MIBS_SERVICEFLOW_TABLE {
unsigned int uiTotalTxBytes;
} S_MIBS_SERVICEFLOW_TABLE;
-typedef struct _S_MIBS_DROPPED_APP_CNTRL_MESSAGES {
+struct bcm_mibs_dropped_cntrl_msg {
unsigned long cm_responses;
unsigned long cm_control_newdsx_multiclassifier_resp;
unsigned long link_control_resp;
@@ -179,14 +179,14 @@ typedef struct _S_MIBS_DROPPED_APP_CNTRL_MESSAGES {
unsigned long idle_mode_status;
unsigned long auth_ss_host_msg;
unsigned long low_priority_message;
-} S_MIBS_DROPPED_APP_CNTRL_MESSAGES;
+};
struct bcm_host_stats_mibs {
S_MIBS_HOST_INFO stHostInfo;
S_MIBS_CLASSIFIER_RULE astClassifierTable[MIBS_MAX_CLASSIFIERS];
S_MIBS_SERVICEFLOW_TABLE astSFtable[MIBS_MAX_SERVICEFLOWS];
S_MIBS_PHS_RULE astPhsRulesTable[MIBS_MAX_PHSRULES];
- S_MIBS_DROPPED_APP_CNTRL_MESSAGES stDroppedAppCntrlMsgs;
+ struct bcm_mibs_dropped_cntrl_msg stDroppedAppCntrlMsgs;
};
#endif