staging: vt6656: Add space around '|'
authorBurcin Akalin <brcnakalin@gmail.com>
Mon, 26 Oct 2015 09:00:03 +0000 (12:00 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 27 Oct 2015 07:53:12 +0000 (16:53 +0900)
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/vt6656/card.c

index 70685e5a79a909d42937b7980c6efdcd4b37d31e..df9393a4f25f90918b92d801ce5ddc62acf4b661 100644 (file)
@@ -82,7 +82,7 @@ void vnt_set_channel(struct vnt_private *priv, u32 connection_channel)
                                        connection_channel, 0, 0, NULL);
 
        vnt_control_out_u8(priv, MESSAGE_REQUEST_MACREG, MAC_REG_CHANNEL,
-               (u8)(connection_channel|0x80));
+               (u8)(connection_channel | 0x80));
 }
 
 /*
This page took 0.026786 seconds and 5 git commands to generate.