Commit 3979b47c authored by Burcin Akalin's avatar Burcin Akalin Committed by Greg Kroah-Hartman

staging: gdm72xx: Add space around '>>'

Add space around operator '>>'. Problem found using
checkpatch.pl
CHECK: spaces preferred around that '>>' (ctx:VxV)
Signed-off-by: default avatarBurcin Akalin <brcnakalin@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 565678ab
......@@ -193,7 +193,7 @@ static int get_qos_index(struct nic *nic, u8 *iph, u8 *tcpudph)
if (!iph || !tcpudph)
return -1;
ip_ver = (iph[0]>>4) & 0xf;
ip_ver = (iph[0] >> 4) & 0xf;
if (ip_ver != 4)
return -1;
......
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