mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-10 13:59:45 -04:00
staging: sm750fb: fix style for if clause
Fix for checkpatch.pl complaints:
ERROR: that open brace { should be on the previous line
CHECK: spaces preferred around that '+' (ctx:VxV)
Signed-off-by: Othmar Pasteka <pasteka@kabsi.at>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
f41b17fc3f
commit
04c73f2896
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user