[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1446307028.2757.210.camel@perches.com>
Date: Sat, 31 Oct 2015 08:57:08 -0700
From: Joe Perches <joe@...ches.com>
To: Bogicevic Sasa <brutallesale@...il.com>
Cc: gregkh@...uxfoundation.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH 2/2] drivers:staging:gdm72xx Fix line over 80 characters
On Sat, 2015-10-31 at 15:00 +0100, Bogicevic Sasa wrote:
> This fixes line over 80 characters message from checkpatch.pl
[]
> diff --git a/drivers/staging/gdm72xx/gdm_qos.c b/drivers/staging/gdm72xx/gdm_qos.c
[]
> @@ -382,7 +382,8 @@ 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);
Probably better to remove the unnecessary parentheses instead
qcb->csr[index].classifier_rule_en = (buf[pos++] << 8) & 0xff00;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists