Staging: bcm: Qos.c: checkpatch.pl fix: Indentation of case-statements fixed
Signed-off-by: Matthias Beyer <mail@beyermatthias.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
8613091369
commit
81a208f8a0
@@ -615,8 +615,7 @@ USHORT ClassifyPacket(struct bcm_mini_adapter *Adapter, struct sk_buff *skb)
|
||||
IPV4_DBG,
|
||||
DBG_LVL_ALL,
|
||||
"ClassifyPacket : 802LLCFrame\n");
|
||||
pIpHeader = pvEThPayload +
|
||||
sizeof(struct bcm_eth_llc_frame);
|
||||
pIpHeader = pvEThPayload + sizeof(struct bcm_eth_llc_frame);
|
||||
break;
|
||||
case eEth802LLCSNAPFrame:
|
||||
BCM_DEBUG_PRINT(Adapter,
|
||||
@@ -633,8 +632,7 @@ USHORT ClassifyPacket(struct bcm_mini_adapter *Adapter, struct sk_buff *skb)
|
||||
IPV4_DBG,
|
||||
DBG_LVL_ALL,
|
||||
"ClassifyPacket : 802.1Q VLANFrame\n");
|
||||
pIpHeader = pvEThPayload +
|
||||
sizeof(struct bcm_eth_q_frame);
|
||||
pIpHeader = pvEThPayload + sizeof(struct bcm_eth_q_frame);
|
||||
break;
|
||||
case eEthOtherFrame:
|
||||
BCM_DEBUG_PRINT(Adapter,
|
||||
@@ -642,8 +640,7 @@ USHORT ClassifyPacket(struct bcm_mini_adapter *Adapter, struct sk_buff *skb)
|
||||
IPV4_DBG,
|
||||
DBG_LVL_ALL,
|
||||
"ClassifyPacket : ETH Other Frame\n");
|
||||
pIpHeader = pvEThPayload +
|
||||
sizeof(struct bcm_ethernet2_frame);
|
||||
pIpHeader = pvEThPayload + sizeof(struct bcm_ethernet2_frame);
|
||||
break;
|
||||
default:
|
||||
BCM_DEBUG_PRINT(Adapter,
|
||||
@@ -651,8 +648,7 @@ USHORT ClassifyPacket(struct bcm_mini_adapter *Adapter, struct sk_buff *skb)
|
||||
IPV4_DBG,
|
||||
DBG_LVL_ALL,
|
||||
"ClassifyPacket : Unrecognized ETH Frame\n");
|
||||
pIpHeader = pvEThPayload +
|
||||
sizeof(struct bcm_ethernet2_frame);
|
||||
pIpHeader = pvEThPayload + sizeof(struct bcm_ethernet2_frame);
|
||||
break;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user