Commit ff2f3e0e authored by Darryl T. Agostinelli's avatar Darryl T. Agostinelli Committed by Greg Kroah-Hartman

staging: rtl8192e: fixed statements should start on a tabstop

fixed statements should start on a tabstop
Signed-off-by: default avatarDarryl T. Agostinelli <dagostinelli@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent eb9eb87d
...@@ -731,17 +731,19 @@ static int rtllib_xmit_inter(struct sk_buff *skb, struct net_device *dev) ...@@ -731,17 +731,19 @@ static int rtllib_xmit_inter(struct sk_buff *skb, struct net_device *dev)
if (qos_actived) { if (qos_actived) {
hdr_len = RTLLIB_3ADDR_LEN + 2; hdr_len = RTLLIB_3ADDR_LEN + 2;
/* in case we are a client verify acm is not set for this ac */ /* in case we are a client verify acm is not set for this ac */
while (unlikely(ieee->wmm_acm & (0x01 << skb->priority))) { while (unlikely(ieee->wmm_acm & (0x01 << skb->priority))) {
netdev_info(ieee->dev, "skb->priority = %x\n", netdev_info(ieee->dev, "skb->priority = %x\n",
skb->priority); skb->priority);
if (wme_downgrade_ac(skb)) if (wme_downgrade_ac(skb))
break; break;
netdev_info(ieee->dev, "converted skb->priority = %x\n", netdev_info(ieee->dev, "converted skb->priority = %x\n",
skb->priority); skb->priority);
} }
qos_ctl |= skb->priority; qos_ctl |= skb->priority;
header.qos_ctl = cpu_to_le16(qos_ctl & RTLLIB_QOS_TID); header.qos_ctl = cpu_to_le16(qos_ctl & RTLLIB_QOS_TID);
} else { } else {
hdr_len = RTLLIB_3ADDR_LEN; hdr_len = RTLLIB_3ADDR_LEN;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment