Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 81a208f8 authored by Matthias Beyer's avatar Matthias Beyer Committed by Greg Kroah-Hartman
Browse files

Staging: bcm: Qos.c: checkpatch.pl fix: Indentation of case-statements fixed

parent 86130913
Loading
Loading
Loading
Loading
+41 −45
Original line number Diff line number Diff line
@@ -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;
	}