From: Burcin Akalin Date: Sat, 31 Oct 2015 22:56:52 +0000 (+0300) Subject: staging: gdm72xx: Add space around '>>' X-Git-Tag: v4.5-rc1~122^2~698 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=3979b47c6e97e924dd3b826b573d38f93515c2bf;p=karo-tx-linux.git 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 Signed-off-by: Greg Kroah-Hartman --- 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;