Staging: bcm: Remove typedef for _stPhsRuleSI and call directly.
authorKevin McKinney <klmckinney1@gmail.com>
Mon, 24 Sep 2012 03:07:16 +0000 (23:07 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 26 Sep 2012 16:31:52 +0000 (09:31 -0700)
This patch removes typedef for _stPhsRuleSI,
changes the name of the struct to
bcm_phs_rules, and updates the comments
appropriately. In addition, any
calls to typedefs "stPhsRuleSI,
*pstPhsRuleSI, or CPhsRuleSI" are
changed to call the struct directly.

Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Acked-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/bcm/cntrl_SignalingInterface.h

index 1bf4780b32bfe1d1ebb86d8e4ab18efbe3abf3b4..f67cb6e2eaa727b0bceacea0248bbb06737c198c 100644 (file)
@@ -98,8 +98,7 @@ struct _stCPacketClassificationRuleSI {
 };
 typedef struct _stCPacketClassificationRuleSI CCPacketClassificationRuleSI, stCPacketClassificationRuleSI, *pstCPacketClassificationRuleSI;
 
-/* brief class CPhsRuleSI */
-typedef struct _stPhsRuleSI {
+struct bcm_phs_rules {
        /* 8bit PHS Index Of The Service Flow */
        B_UINT8 u8PHSI;
        /* PHSF Length Of The Service Flow */
@@ -119,8 +118,7 @@ typedef struct _stPhsRuleSI {
        /* Vendor Specific PHS param Of The Service Flow */
        B_UINT8 u8VendorSpecificPHSParams[VENDOR_PHS_PARAM_LENGTH];
        B_UINT8 u8Padding[2];
-} stPhsRuleSI, *pstPhsRuleSI;
-typedef stPhsRuleSI CPhsRuleSI;
+};
 
 struct bcm_convergence_types {
        /* 8bit Phs Classfier Action Of The Service Flow */
@@ -131,8 +129,8 @@ struct bcm_convergence_types {
        B_UINT8 u8Padding[2];
        /* brief class cCPacketClassificationRule */
        stCPacketClassificationRuleSI cCPacketClassificationRule;
-       /* brief class CPhsRuleSI */
-       struct _stPhsRuleSI cPhsRule;
+       /* Payload header suppression rules structure */
+       struct bcm_phs_rules cPhsRule;
 };
 
 struct bcm_connect_mgr_params {