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:
parent
3e63dbd425
commit
2596313a9f
@ -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);
|
||||
|
||||
};
|
||||
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user