diff options
| author | Nolen Johnson <johnsonnolen@gmail.com> | 2022-11-01 01:31:04 -0400 |
|---|---|---|
| committer | Nolen Johnson <johnsonnolen@gmail.com> | 2022-11-01 01:31:21 -0400 |
| commit | f8e30a0f9a170bd6f3323880b0fa0b691f702ed9 (patch) | |
| tree | dd83082125b9eb0a7a9d84322451ca302c7a0dc5 /drivers/video/fbdev/msm | |
| parent | 4fa5045f3dc95f522945d11a687f3fadd9bdc566 (diff) | |
fixup! BACKPORT: treewide: Fix function prototypes for module_param_call()
Change-Id: Id4056255732a1865e4b97a443ba936a51954e407
Diffstat (limited to 'drivers/video/fbdev/msm')
| -rw-r--r-- | drivers/video/fbdev/msm/mdss_dsi_status.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/video/fbdev/msm/mdss_dsi_status.c b/drivers/video/fbdev/msm/mdss_dsi_status.c index 0f24f66dbcc6..64e9739a46f5 100644 --- a/drivers/video/fbdev/msm/mdss_dsi_status.c +++ b/drivers/video/fbdev/msm/mdss_dsi_status.c @@ -213,7 +213,8 @@ static int fb_event_callback(struct notifier_block *self, return 0; } -static int param_dsi_status_disable(const char *val, struct kernel_param *kp) +static int param_dsi_status_disable(const char *val, + const struct kernel_param *kp) { int ret = 0; int int_val; @@ -228,7 +229,7 @@ static int param_dsi_status_disable(const char *val, struct kernel_param *kp) return ret; } -static int param_set_interval(const char *val, struct kernel_param *kp) +static int param_set_interval(const char *val, const struct kernel_param *kp) { int ret = 0; int int_val; |
