staging:vt6656:mac.c Aligned to match open parenthesis
authorScott Matheina <scott@matheina.com>
Wed, 11 Jan 2017 04:34:17 +0000 (22:34 -0600)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 Jan 2017 17:08:57 +0000 (18:08 +0100)
Fixes checkpatch warning: Alignment should match open parenthesis

Signed-off-by: Scott Matheina <scott@matheina.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6656/mac.c

index 86d98bc..417fdad 100644 (file)
@@ -169,8 +169,8 @@ void vnt_mac_write_word(struct vnt_private *priv, u8 reg_ofs, u16 word)
        data[0] = (u8)(word & 0xff);
        data[1] = (u8)(word >> 8);
 
-       vnt_control_out(priv, MESSAGE_TYPE_WRITE,
-               reg_ofs, MESSAGE_REQUEST_MACREG, ARRAY_SIZE(data), data);
+       vnt_control_out(priv, MESSAGE_TYPE_WRITE, reg_ofs,
+                       MESSAGE_REQUEST_MACREG, ARRAY_SIZE(data), data);
 }
 
 void vnt_mac_set_bssid_addr(struct vnt_private *priv, u8 *addr)