aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/gdm72xx
diff options
context:
space:
mode:
authorBurcin Akalin <brcnakalin@gmail.com>2015-11-01 01:56:52 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-11-15 20:02:47 -0800
commit3979b47c6e97e924dd3b826b573d38f93515c2bf (patch)
tree6d547f13e1ca73af37570ac304a05428c551912d /drivers/staging/gdm72xx
parentstaging: gdm72xx: Add space around '/' (diff)
downloadlinux-dev-3979b47c6e97e924dd3b826b573d38f93515c2bf.tar.xz
linux-dev-3979b47c6e97e924dd3b826b573d38f93515c2bf.zip
staging: gdm72xx: Add space around '>>'
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>
Diffstat (limited to 'drivers/staging/gdm72xx')
-rw-r--r--drivers/staging/gdm72xx/gdm_qos.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/gdm72xx/gdm_qos.c b/drivers/staging/gdm72xx/gdm_qos.c
index 5db16ea05dbc..ba5387fa66ef 100644
--- a/drivers/staging/gdm72xx/gdm_qos.c
+++ b/drivers/staging/gdm72xx/gdm_qos.c
@@ -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;