]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
Staging: bcm: Remove typedef for _S_MIBS_DROPPED_APP_CNTRL_MESSAGES and call directly.
authorKevin McKinney <klmckinney1@gmail.com>
Mon, 26 Nov 2012 00:28:57 +0000 (19:28 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 27 Nov 2012 00:07:57 +0000 (16:07 -0800)
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>
drivers/staging/bcm/Adapter.h
drivers/staging/bcm/HandleControlPacket.c
drivers/staging/bcm/HostMIBSInterface.h
drivers/staging/bcm/hostmibs.c

index 8c1465af3c323583957a9028bedae31a4d09f686..15e88380da437f0ab8d51dcfd9334c4f0e959741 100644 (file)
@@ -198,7 +198,7 @@ struct bcm_tarang_data {
        int                     AppCtrlQueueLen;
        BOOLEAN                 MacTracingEnabled;
        BOOLEAN                 bApplicationToExit;
-       S_MIBS_DROPPED_APP_CNTRL_MESSAGES       stDroppedAppCntrlMsgs;
+       struct bcm_mibs_dropped_cntrl_msg stDroppedAppCntrlMsgs;
        ULONG                   RxCntrlMsgBitMask;
 };
 
index 25e5c68bfe8516d35c6ec338776fb4851cadbfd1..1bb53e247a6254bcea91c2d83a62cdf5653b5677 100644 (file)
@@ -226,7 +226,7 @@ INT flushAllAppQ(void)
                pTarang->AppCtrlQueueLen = 0;
                /* dropped contrl packet statistics also should be reset. */
                memset((PVOID)&pTarang->stDroppedAppCntrlMsgs, 0,
-                       sizeof(S_MIBS_DROPPED_APP_CNTRL_MESSAGES));
+                       sizeof(struct bcm_mibs_dropped_cntrl_msg));
 
        }
        return STATUS_SUCCESS;
index 7c7c75618cd77cff60ddedbc227cf0252dc80b56..e697b03e1510029b4c6813721fcce42331135199 100644 (file)
@@ -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
index 23ff8325fa8b55793a9124dcebb66c969faf54a8..e7dc39ea7ae6505e2ae48d1f5de14e39d13d917f 100644 (file)
@@ -98,7 +98,7 @@ VOID GetDroppedAppCntrlPktMibs(struct bcm_host_stats_mibs *pstHostMibs, struct b
 {
        memcpy(&(pstHostMibs->stDroppedAppCntrlMsgs),
               &(pTarang->stDroppedAppCntrlMsgs),
-              sizeof(S_MIBS_DROPPED_APP_CNTRL_MESSAGES));
+              sizeof(struct bcm_mibs_dropped_cntrl_msg));
 }
 
 VOID CopyMIBSExtendedSFParameters(struct bcm_mini_adapter *Adapter, struct bcm_connect_mgr_params *psfLocalSet, UINT uiSearchRuleIndex)