aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMateusz Kulikowski <mateusz.kulikowski@gmail.com>2015-03-31 18:24:30 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-04-03 09:29:30 -0400
commite2ac043118eed826444972bd81ab0bf70461a0fe (patch)
treee3fc8d9ba04c3251c945dfb5f21f0c70bcdb58d8
parent025b8bbe49939dfd68a57cc94bca65c39a5409b8 (diff)
staging: rtl8192e: Fix LINE_CONTINUATIONS warning
Fix 'Avoid unnecessary line continuations' checkpatch.pl warning Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/rtl8192e/rtllib_softmac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8192e/rtllib_softmac.c b/drivers/staging/rtl8192e/rtllib_softmac.c
index 0f2ae3557bc8..d3fc5a45dbbc 100644
--- a/drivers/staging/rtl8192e/rtllib_softmac.c
+++ b/drivers/staging/rtl8192e/rtllib_softmac.c
@@ -2503,7 +2503,7 @@ void rtllib_softmac_xmit(struct rtllib_txb *txb, struct rtllib_device *ieee)
2503 * the wait queue */ 2503 * the wait queue */
2504 for (i = 0; i < txb->nr_frags; i++) { 2504 for (i = 0; i < txb->nr_frags; i++) {
2505 queue_len = skb_queue_len(&ieee->skb_waitQ[queue_index]); 2505 queue_len = skb_queue_len(&ieee->skb_waitQ[queue_index]);
2506 if ((queue_len != 0) ||\ 2506 if ((queue_len != 0) ||
2507 (!ieee->check_nic_enough_desc(ieee->dev, queue_index)) || 2507 (!ieee->check_nic_enough_desc(ieee->dev, queue_index)) ||
2508 (ieee->queue_stop)) { 2508 (ieee->queue_stop)) {
2509 /* insert the skb packet to the wait queue */ 2509 /* insert the skb packet to the wait queue */