net: hdlc_fr: remove space after '!'
According to the chackpatch.pl, space prohibited after that '!'. Signed-off-by: Peng Li <lipeng321@huawei.com> Signed-off-by: Guangbin Huang <huangguangbin2@huawei.com> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
683b54bb46
commit
8f032c6535
|
@ -789,8 +789,8 @@ static int fr_lmi_recv(struct net_device *dev, struct sk_buff *skb)
|
|||
}
|
||||
i++;
|
||||
|
||||
new = !! (skb->data[i + 2] & 0x08);
|
||||
active = !! (skb->data[i + 2] & 0x02);
|
||||
new = !!(skb->data[i + 2] & 0x08);
|
||||
active = !!(skb->data[i + 2] & 0x02);
|
||||
if (lmi == LMI_CISCO) {
|
||||
dlci = (skb->data[i] << 8) | skb->data[i + 1];
|
||||
bw = (skb->data[i + 3] << 16) |
|
||||
|
|
Loading…
Reference in New Issue