mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-10 20:02:10 -04:00
staging: sm750fb: rename hw_sm750_output_setMode
Rename `hw_sm750_output_setMode` to `hw_sm750_output_set_mode` to conform with kernel style guidelines as reported by checkpatch.pl CHECK: Avoid CamelCase: <hw_sm750_output_setMode> Signed-off-by: Eric Florin <ericflorin@google.com> Link: https://lore.kernel.org/r/32daa589cf80d2f6f67ed257aa9397128a5458d2.1747619816.git.ericflorin@google.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
2a7639ea2e
commit
1bfa739531
@@ -394,7 +394,7 @@ static int lynxfb_ops_set_par(struct fb_info *info)
|
||||
}
|
||||
ret = hw_sm750_crtc_setMode(crtc, var, fix);
|
||||
if (!ret)
|
||||
ret = hw_sm750_output_setMode(output, var, fix);
|
||||
ret = hw_sm750_output_set_mode(output, var, fix);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
@@ -197,9 +197,9 @@ void hw_sm750_init_accel(struct sm750_dev *sm750_dev);
|
||||
int hw_sm750_de_wait(void);
|
||||
int hw_sm750le_de_wait(void);
|
||||
|
||||
int hw_sm750_output_setMode(struct lynxfb_output *output,
|
||||
struct fb_var_screeninfo *var,
|
||||
struct fb_fix_screeninfo *fix);
|
||||
int hw_sm750_output_set_mode(struct lynxfb_output *output,
|
||||
struct fb_var_screeninfo *var,
|
||||
struct fb_fix_screeninfo *fix);
|
||||
|
||||
int hw_sm750_crtc_checkMode(struct lynxfb_crtc *crtc,
|
||||
struct fb_var_screeninfo *var);
|
||||
|
||||
@@ -178,9 +178,9 @@ int hw_sm750_inithw(struct sm750_dev *sm750_dev, struct pci_dev *pdev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
int hw_sm750_output_setMode(struct lynxfb_output *output,
|
||||
struct fb_var_screeninfo *var,
|
||||
struct fb_fix_screeninfo *fix)
|
||||
int hw_sm750_output_set_mode(struct lynxfb_output *output,
|
||||
struct fb_var_screeninfo *var,
|
||||
struct fb_fix_screeninfo *fix)
|
||||
{
|
||||
int ret;
|
||||
enum disp_output disp_set;
|
||||
|
||||
Reference in New Issue
Block a user