Commit f7d8b69a authored by Juston Li's avatar Juston Li Committed by Greg Kroah-Hartman

staging: sm750fb: add space after return type

Fixes checkpatch.pl warning:
WARNING: missing space after return type
Signed-off-by: default avatarJuston Li <juston.h.li@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5d14c13a
......@@ -108,12 +108,12 @@ struct lynxfb_crtc {
void *priv;
int(*proc_setMode)(struct lynxfb_crtc*,
int (*proc_setMode)(struct lynxfb_crtc*,
struct fb_var_screeninfo*,
struct fb_fix_screeninfo*);
int(*proc_checkMode)(struct lynxfb_crtc*, struct fb_var_screeninfo*);
int(*proc_setColReg)(struct lynxfb_crtc*, ushort, ushort, ushort, ushort);
int (*proc_checkMode)(struct lynxfb_crtc*, struct fb_var_screeninfo*);
int (*proc_setColReg)(struct lynxfb_crtc*, ushort, ushort, ushort, ushort);
void (*clear)(struct lynxfb_crtc*);
/* pan display */
int (*proc_panDisplay)(struct lynxfb_crtc *,
......@@ -140,12 +140,12 @@ struct lynxfb_output {
*/
void *priv;
int(*proc_setMode)(struct lynxfb_output*,
int (*proc_setMode)(struct lynxfb_output*,
struct fb_var_screeninfo*,
struct fb_fix_screeninfo*);
int(*proc_checkMode)(struct lynxfb_output*, struct fb_var_screeninfo*);
int(*proc_setBLANK)(struct lynxfb_output*, int);
int (*proc_checkMode)(struct lynxfb_output*, struct fb_var_screeninfo*);
int (*proc_setBLANK)(struct lynxfb_output*, int);
void (*clear)(struct lynxfb_output*);
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment