This patch removes a typedef from a variable definition
in CmHost.c, and uses a enum instead. This Warning
was reported by checkpatch.pl.

Signed-off-by: Kevin McKinney <[email protected]>
---
 drivers/staging/bcm/CmHost.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 63d768d..cf4146e 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/CmHost.c
@@ -7,12 +7,12 @@
 /* #define CONN_MSG */
 #include "headers.h"
 
-typedef enum _E_CLASSIFIER_ACTION {
+enum E_CLASSIFIER_ACTION {
        eInvalidClassifierAction,
        eAddClassifier,
        eReplaceClassifier,
        eDeleteClassifier
-} E_CLASSIFIER_ACTION;
+};
 
 static ULONG GetNextTargetBufferLocation(PMINI_ADAPTER Adapter, B_UINT16 tid);
 
@@ -437,7 +437,7 @@ static VOID CopyToAdapter(register PMINI_ADAPTER Adapter, 
/* <Pointer to the Ada
        /* UCHAR ucProtocolLength = 0; */
        ULONG ulSFID;
        UINT nClassifierIndex = 0;
-       E_CLASSIFIER_ACTION eClassifierAction = eInvalidClassifierAction;
+       enum E_CLASSIFIER_ACTION eClassifierAction = eInvalidClassifierAction;
        B_UINT16 u16PacketClassificationRuleIndex = 0;
        UINT nIndex = 0;
        stConvergenceSLTypes *psfCSType = NULL;
-- 
1.7.5.4

_______________________________________________
devel mailing list
[email protected]
http://driverdev.linuxdriverproject.org/mailman/listinfo/devel

Reply via email to