summaryrefslogtreecommitdiffstats
path: root/drivers/staging/bcm/Qos.c
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2014-07-29 16:52:28 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-07-30 17:14:23 -0700
commit34cad16c84d2752e4ea298f6db269734e206ca83 (patch)
treefc9b188df73fb8a31f540df67224ca0953f34c22 /drivers/staging/bcm/Qos.c
parent0f1743418705e431cf4409f1efc51320ed433f5d (diff)
downloadlinux-34cad16c84d2752e4ea298f6db269734e206ca83.tar.bz2
Staging: bcm: Qos.c: Line length / Whitespace cleanup in flush_all_queues()
Signed-off-by: Matthias Beyer <mail@beyermatthias.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/bcm/Qos.c')
-rw-r--r--drivers/staging/bcm/Qos.c20
1 files changed, 16 insertions, 4 deletions
diff --git a/drivers/staging/bcm/Qos.c b/drivers/staging/bcm/Qos.c
index 4bba0a9b152c..1608ba4fbb23 100644
--- a/drivers/staging/bcm/Qos.c
+++ b/drivers/staging/bcm/Qos.c
@@ -533,7 +533,11 @@ VOID flush_all_queues(struct bcm_mini_adapter *Adapter)
struct sk_buff *PacketToDrop = NULL;
struct bcm_packet_info *curr_packet_info;
- BCM_DEBUG_PRINT(Adapter, DBG_TYPE_OTHERS, DUMP_INFO, DBG_LVL_ALL, "=====>");
+ BCM_DEBUG_PRINT(Adapter,
+ DBG_TYPE_OTHERS,
+ DUMP_INFO,
+ DBG_LVL_ALL,
+ "=====>");
/* down(&Adapter->data_packet_queue_lock); */
for (iQIndex = LowPriority; iQIndex < HiPriority; iQIndex++) {
@@ -550,7 +554,7 @@ VOID flush_all_queues(struct bcm_mini_adapter *Adapter)
uiTotalPacketLength = 0;
DEQUEUEPACKET(curr_packet_info->FirstTxQueue,
- curr_packet_info->LastTxQueue);
+ curr_packet_info->LastTxQueue);
/* Free the skb */
dev_kfree_skb(PacketToDrop);
@@ -563,7 +567,11 @@ VOID flush_all_queues(struct bcm_mini_adapter *Adapter)
curr_packet_info->uiDroppedCountBytes += uiTotalPacketLength;
curr_packet_info->uiDroppedCountPackets++;
- BCM_DEBUG_PRINT(Adapter, DBG_TYPE_OTHERS, DUMP_INFO, DBG_LVL_ALL, "Dropped Bytes:%x Dropped Packets:%x",
+ BCM_DEBUG_PRINT(Adapter,
+ DBG_TYPE_OTHERS,
+ DUMP_INFO,
+ DBG_LVL_ALL,
+ "Dropped Bytes:%x Dropped Packets:%x",
curr_packet_info->uiDroppedCountBytes,
curr_packet_info->uiDroppedCountPackets);
atomic_dec(&Adapter->TotalPacketCount);
@@ -571,7 +579,11 @@ VOID flush_all_queues(struct bcm_mini_adapter *Adapter)
spin_unlock_bh(&curr_packet_info->SFQueueLock);
}
/* up(&Adapter->data_packet_queue_lock); */
- BCM_DEBUG_PRINT(Adapter, DBG_TYPE_OTHERS, DUMP_INFO, DBG_LVL_ALL, "<=====");
+ BCM_DEBUG_PRINT(Adapter,
+ DBG_TYPE_OTHERS,
+ DUMP_INFO,
+ DBG_LVL_ALL,
+ "<=====");
}
USHORT ClassifyPacket(struct bcm_mini_adapter *Adapter, struct sk_buff *skb)