From: Marco Villegas Date: Fri, 2 Aug 2019 19:47:37 +0000 (-0300) Subject: staging: rtl8712: Add spaces around << X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=9fd827c699aaaac8521a3246638850913d140854;p=openwrt%2Fstaging%2Fblogic.git staging: rtl8712: Add spaces around << Fix checkpatch error "CHECK: spaces preferred around that '<<'". Signed-off-by: Marco Villegas Link: https://lore.kernel.org/r/20190802194737.12252-1-git@marvil07.net Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8712/rtl871x_xmit.h b/drivers/staging/rtl8712/rtl871x_xmit.h index 4199cb586fb1..c5c55967164b 100644 --- a/drivers/staging/rtl8712/rtl871x_xmit.h +++ b/drivers/staging/rtl8712/rtl871x_xmit.h @@ -41,7 +41,7 @@ do { \ pattrib_iv[0] = txpn._byte_.TSC0;\ pattrib_iv[1] = txpn._byte_.TSC1;\ pattrib_iv[2] = txpn._byte_.TSC2;\ - pattrib_iv[3] = ((keyidx & 0x3)<<6);\ + pattrib_iv[3] = ((keyidx & 0x3) << 6);\ txpn.val = (txpn.val == 0xffffff) ? 0 : (txpn.val+1);\ } while (0)