This fixes line over 80 character messages from checkpatch.pl

Signed-off-by: Bogicevic Sasa <[email protected]>
---
 drivers/staging/gdm72xx/gdm_qos.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/gdm72xx/gdm_qos.c 
b/drivers/staging/gdm72xx/gdm_qos.c
index c03204b..44d04bd 100644
--- a/drivers/staging/gdm72xx/gdm_qos.c
+++ b/drivers/staging/gdm72xx/gdm_qos.c
@@ -382,7 +382,7 @@ void gdm_recv_qos_hci_packet(void *nic_ptr, u8 *buf, int 
size)
 
                spin_lock_irqsave(&qcb->qos_lock, flags);
                qcb->csr[index].sfid = sfid;
-               qcb->csr[index].classifier_rule_en = ((buf[pos++] << 8) & 
0xff00);
+               qcb->csr[index].classifier_rule_en = (buf[pos++] << 8) & 0xff00;
                qcb->csr[index].classifier_rule_en += buf[pos++];
                if (qcb->csr[index].classifier_rule_en == 0)
                        qcb->qos_null_idx = index;
-- 
2.1.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to