]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
Staging: bcm: fixed parentheses and quoted string across lines coding style in CmHost.c
authorJoshua Baldock <joshua.balock@gmail.com>
Thu, 13 Mar 2014 06:14:58 +0000 (17:14 +1100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 17 Mar 2014 19:11:29 +0000 (12:11 -0700)
This is a patch to the CmHost.c file that fixes up parentheses and
quoted string across lines warnings found by checkpatch.pl tool.

Signed-off-by: Joshua Baldock <joshua.baldock@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/bcm/CmHost.c

index cc91b5e934aa0f73e4aa43a5a7ded9333e9ffd28..cc82588c61bffd837fc0562a1eedcba6f099b610 100644 (file)
@@ -975,8 +975,8 @@ static VOID DumpCmControlPacket(PVOID pvBuffer)
                                psfCSType->cCPacketClassificationRule.u8EthernetDestMacAddressLength);
 
                BCM_DEBUG_PRINT(Adapter, DBG_TYPE_OTHERS, DUMP_CONTROL,
-                               DBG_LVL_ALL, "u8EthernetSourceMACAddress[6]: "
-                               "%pM", psfCSType->cCPacketClassificationRule.
+                               DBG_LVL_ALL, "u8EthernetSourceMACAddress[6]: %pM",
+                               psfCSType->cCPacketClassificationRule.
                                                u8EthernetSourceMACAddress);
 
                BCM_DEBUG_PRINT(Adapter, DBG_TYPE_OTHERS, DUMP_CONTROL, DBG_LVL_ALL, "u8EthertypeLength: 0x%02X ",
@@ -1092,18 +1092,16 @@ static VOID DumpCmControlPacket(PVOID pvBuffer)
                                psfCSType->cCPacketClassificationRule.u8ProtocolSourcePortRangeLength);
 
                BCM_DEBUG_PRINT(Adapter, DBG_TYPE_OTHERS, DUMP_CONTROL,
-                               DBG_LVL_ALL, "u8ProtocolSourcePortRange[4]: "
-                               "0x%*ph ", 4, psfCSType->
-                                               cCPacketClassificationRule.
+                               DBG_LVL_ALL, "u8ProtocolSourcePortRange[4]: 0x%*ph ",
+                               4, psfCSType->cCPacketClassificationRule.
                                                u8ProtocolSourcePortRange);
 
                BCM_DEBUG_PRINT(Adapter, DBG_TYPE_OTHERS, DUMP_CONTROL, DBG_LVL_ALL, "u8ProtocolDestPortRangeLength: 0x%02X ",
                                psfCSType->cCPacketClassificationRule.u8ProtocolDestPortRangeLength);
 
                BCM_DEBUG_PRINT(Adapter, DBG_TYPE_OTHERS, DUMP_CONTROL,
-                               DBG_LVL_ALL, "u8ProtocolDestPortRange[4]: "
-                               "0x%*ph ", 4, psfCSType->
-                                               cCPacketClassificationRule.
+                               DBG_LVL_ALL, "u8ProtocolDestPortRange[4]: 0x%*ph ",
+                               4, psfCSType->cCPacketClassificationRule.
                                                u8ProtocolDestPortRange);
 
                BCM_DEBUG_PRINT(Adapter, DBG_TYPE_OTHERS, DUMP_CONTROL, DBG_LVL_ALL, "u8EthernetDestMacAddressLength: 0x%02X ",
@@ -1118,8 +1116,8 @@ static VOID DumpCmControlPacket(PVOID pvBuffer)
                                psfCSType->cCPacketClassificationRule.u8EthernetDestMacAddressLength);
 
                BCM_DEBUG_PRINT(Adapter, DBG_TYPE_OTHERS, DUMP_CONTROL,
-                               DBG_LVL_ALL, "u8EthernetSourceMACAddress[6]: "
-                               "%pM", psfCSType->cCPacketClassificationRule.
+                               DBG_LVL_ALL, "u8EthernetSourceMACAddress[6]: %pM",
+                               psfCSType->cCPacketClassificationRule.
                                                u8EthernetSourceMACAddress);
 
                BCM_DEBUG_PRINT(Adapter, DBG_TYPE_OTHERS, DUMP_CONTROL, DBG_LVL_ALL, "u8EthertypeLength: 0x%02X ", psfCSType->cCPacketClassificationRule.u8EthertypeLength);
@@ -1694,7 +1692,7 @@ bool CmControlResponseMessage(struct bcm_mini_adapter *Adapter,  /* <Pointer to
                                uiSearchRuleIndex);
                BCM_DEBUG_PRINT(Adapter, DBG_TYPE_OTHERS, CONN_MSG, DBG_LVL_ALL, "Direction:0x%X ",
                                pstAddIndication->u8Direction);
-               if ((uiSearchRuleIndex < NO_OF_QUEUES)) {
+               if (uiSearchRuleIndex < NO_OF_QUEUES) {
                        Adapter->PackInfo[uiSearchRuleIndex].ucDirection =
                                pstAddIndication->u8Direction;
                        BCM_DEBUG_PRINT(Adapter, DBG_TYPE_OTHERS, CONN_MSG, DBG_LVL_ALL, "bValid:0x%X ",
@@ -1801,7 +1799,7 @@ bool CmControlResponseMessage(struct bcm_mini_adapter *Adapter,  /* <Pointer to
                if (uiSearchRuleIndex > NO_OF_QUEUES-1)
                        BCM_DEBUG_PRINT(Adapter, DBG_TYPE_PRINTK, 0, 0, "SF doesn't exist for which DSC_ACK is received");
 
-               if ((uiSearchRuleIndex < NO_OF_QUEUES)) {
+               if (uiSearchRuleIndex < NO_OF_QUEUES) {
                        Adapter->PackInfo[uiSearchRuleIndex].ucDirection = pstChangeIndication->u8Direction;
                        if (pstChangeIndication->sfActiveSet.bValid == TRUE)
                                Adapter->PackInfo[uiSearchRuleIndex].bActiveSet = TRUE;