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>
This commit is contained in:
R Veera Kumar 2020-04-13 21:37:53 +05:30 committed by Greg Kroah-Hartman
parent 3e63dbd425
commit 2596313a9f
2 changed files with 12 additions and 9 deletions

View file

@ -59,16 +59,19 @@ struct lynx_accel {
int (*de_wait)(void);/* see if hardware ready to work */
int (*de_fillrect)(struct lynx_accel *, u32, u32, u32, u32,
u32, 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,
u32, u32, u32, u32,
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,
u32, u32, u32, u32,
u32, u32, u32, u32);
int (*de_imageblit)(struct lynx_accel *, const char *,
u32, u32, u32, u32,
u32, u32, u32, u32,
u32, u32, u32, u32);
};

View file

@ -51,7 +51,7 @@ int hw_sm750_map(struct sm750_dev *sm750_dev, struct pci_dev *pdev)
/* now map mmio and vidmem */
sm750_dev->pvReg = ioremap(sm750_dev->vidreg_start,
sm750_dev->vidreg_size);
sm750_dev->vidreg_size);
if (!sm750_dev->pvReg) {
pr_err("mmio failed\n");
ret = -EFAULT;