diff mbox

[1/2] staging: sm750fb: move opening brace to previous line

Message ID e426148688caace0a5083b379c1eaab85e424c74.1446942955.git.pasteka@kabsi.at (mailing list archive)
State New, archived
Headers show

Commit Message

Othmar Pasteka Nov. 8, 2015, 12:43 a.m. UTC
Fixes the checkpatch.pl error:
ERROR: that open brace { should be on the previous line

Signed-off-by: Othmar Pasteka <pasteka@kabsi.at>
---
 drivers/staging/sm750fb/sm750_cursor.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
diff mbox

Patch

diff --git a/drivers/staging/sm750fb/sm750_cursor.c b/drivers/staging/sm750fb/sm750_cursor.c
index 3b7ce92..cab891c 100644
--- a/drivers/staging/sm750fb/sm750_cursor.c
+++ b/drivers/staging/sm750fb/sm750_cursor.c
@@ -143,8 +143,7 @@  void hw_cursor_setData(struct lynx_cursor *cursor,
 		iowrite16(data, pbuffer);
 
 		/* assume pitch is 1,2,4,8,...*/
-		if ((i+1) % pitch == 0)
-		{
+		if ((i+1) % pitch == 0) {
 			/* need a return */
 			pstart += offset;
 			pbuffer = pstart;