]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: gdm72xx: Add space around '>>'
authorBurcin Akalin <brcnakalin@gmail.com>
Sat, 31 Oct 2015 22:56:52 +0000 (01:56 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 Nov 2015 04:02:47 +0000 (20:02 -0800)
Add space around operator '>>'. Problem found using
checkpatch.pl
CHECK: spaces preferred around that '>>' (ctx:VxV)

Signed-off-by: Burcin Akalin <brcnakalin@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/gdm72xx/gdm_qos.c

index 5db16ea05dbcc58624a515cf3d278112576b2e97..ba5387fa66efa8b2351d10a1f476f8b496ca465f 100644 (file)
@@ -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;