Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1556201 > unrolled thread

[PATCH] staging:vt6656:mac.c Aligned to match open parenthesis

Started byScott Matheina <scott@matheina.com>
First post2017-01-11 05:40 +0100
Last post2017-01-11 05:40 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] staging:vt6656:mac.c Aligned to match open parenthesis Scott Matheina <scott@matheina.com> - 2017-01-11 05:40 +0100

#1556201 — [PATCH] staging:vt6656:mac.c Aligned to match open parenthesis

FromScott Matheina <scott@matheina.com>
Date2017-01-11 05:40 +0100
Subject[PATCH] staging:vt6656:mac.c Aligned to match open parenthesis
Message-ID<sYiRz-29R-5@gated-at.bofh.it>
Fixes checkpatch warning: Alignment should match open parenthesis

Signed-off-by: Scott Matheina <scott@matheina.com>
---
 drivers/staging/vt6656/mac.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/vt6656/mac.c b/drivers/staging/vt6656/mac.c
index 86d98bc..417fdad 100644
--- a/drivers/staging/vt6656/mac.c
+++ b/drivers/staging/vt6656/mac.c
@@ -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)
-- 
2.7.4

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web