Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: rtl8192e: fixed statements should start on a tabstop

fixed statements should start on a tabstop

Signed-off-by: Darryl T. Agostinelli <dagostinelli@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Darryl T. Agostinelli and committed by
Greg Kroah-Hartman
ff2f3e0e eb9eb87d

+11 -9
+11 -9
drivers/staging/rtl8192e/rtllib_tx.c
··· 731 731 if (qos_actived) { 732 732 hdr_len = RTLLIB_3ADDR_LEN + 2; 733 733 734 - /* in case we are a client verify acm is not set for this ac */ 735 - while (unlikely(ieee->wmm_acm & (0x01 << skb->priority))) { 736 - netdev_info(ieee->dev, "skb->priority = %x\n", 737 - skb->priority); 738 - if (wme_downgrade_ac(skb)) 739 - break; 740 - netdev_info(ieee->dev, "converted skb->priority = %x\n", 741 - skb->priority); 742 - } 734 + /* in case we are a client verify acm is not set for this ac */ 735 + while (unlikely(ieee->wmm_acm & (0x01 << skb->priority))) { 736 + netdev_info(ieee->dev, "skb->priority = %x\n", 737 + skb->priority); 738 + if (wme_downgrade_ac(skb)) 739 + break; 740 + netdev_info(ieee->dev, "converted skb->priority = %x\n", 741 + skb->priority); 742 + } 743 + 743 744 qos_ctl |= skb->priority; 744 745 header.qos_ctl = cpu_to_le16(qos_ctl & RTLLIB_QOS_TID); 746 + 745 747 } else { 746 748 hdr_len = RTLLIB_3ADDR_LEN; 747 749 }