Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: sm750fb: Make function arguments alignment match open parenthesis

Make function arguments alignment match open parenthesis.
Found using checkpatch.pl.

Signed-off-by: R Veera Kumar <vkor@vkten.in>
Link: https://lore.kernel.org/r/20200413160753.3787-1-vkor@vkten.in
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

R Veera Kumar and committed by
Greg Kroah-Hartman
2596313a 3e63dbd4

+12 -9
+11 -8
drivers/staging/sm750fb/sm750.h
··· 59 59 60 60 int (*de_wait)(void);/* see if hardware ready to work */ 61 61 62 - int (*de_fillrect)(struct lynx_accel *, u32, u32, u32, u32, 63 - u32, u32, u32, u32, u32); 62 + int (*de_fillrect)(struct lynx_accel *, 63 + u32, u32, u32, u32, 64 + u32, u32, u32, u32, u32); 64 65 65 - int (*de_copyarea)(struct lynx_accel *, u32, u32, u32, u32, 66 - u32, u32, u32, u32, 67 - u32, u32, u32, u32); 66 + int (*de_copyarea)(struct lynx_accel *, 67 + u32, u32, u32, u32, 68 + u32, u32, u32, u32, 69 + u32, u32, u32, u32); 68 70 69 - int (*de_imageblit)(struct lynx_accel *, const char *, u32, u32, u32, u32, 70 - u32, u32, u32, u32, 71 - u32, u32, u32, u32); 71 + int (*de_imageblit)(struct lynx_accel *, const char *, 72 + u32, u32, u32, u32, 73 + u32, u32, u32, u32, 74 + u32, u32, u32, u32); 72 75 73 76 }; 74 77
+1 -1
drivers/staging/sm750fb/sm750_hw.c
··· 51 51 52 52 /* now map mmio and vidmem */ 53 53 sm750_dev->pvReg = ioremap(sm750_dev->vidreg_start, 54 - sm750_dev->vidreg_size); 54 + sm750_dev->vidreg_size); 55 55 if (!sm750_dev->pvReg) { 56 56 pr_err("mmio failed\n"); 57 57 ret = -EFAULT;