Commit 2596313a authored by R Veera Kumar's avatar R Veera Kumar Committed by Greg Kroah-Hartman
Browse files

staging: sm750fb: Make function arguments alignment match open parenthesis



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

Signed-off-by: default avatarR Veera Kumar <vkor@vkten.in>
Link: https://lore.kernel.org/r/20200413160753.3787-1-vkor@vkten.in


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 3e63dbd4
Loading
Loading
Loading
Loading
+13 −10
Original line number Diff line number Diff line
@@ -59,14 +59,17 @@ struct lynx_accel {

	int (*de_wait)(void);/* see if hardware ready to work */

	int (*de_fillrect)(struct lynx_accel *, u32, u32, u32, u32,
	int (*de_fillrect)(struct lynx_accel *,
			   u32, u32, u32, u32,
			   u32, u32, u32, u32, u32);

	int (*de_copyarea)(struct lynx_accel *, u32, u32, u32, u32,
	int (*de_copyarea)(struct lynx_accel *,
			   u32, u32, u32, u32,
			   u32, u32, u32, u32,
			   u32, u32, u32, u32);

	int (*de_imageblit)(struct lynx_accel *, const char *, u32, u32, u32, u32,
	int (*de_imageblit)(struct lynx_accel *, const char *,
			    u32, u32, u32, u32,
			    u32, u32, u32, u32,
			    u32, u32, u32, u32);

+1 −1

File changed.

Contains only whitespace changes.