diff options
author | Jani Nikula <jani.nikula@intel.com> | 2019-12-03 19:38:50 +0300 |
---|---|---|
committer | Jani Nikula <jani.nikula@intel.com> | 2019-12-05 11:57:53 +0300 |
commit | 8a48ac339398f21282985bff16552447d41dcfb2 (patch) | |
tree | 6119e9d2edf8d42b5b96974f42a0cdb2f4d07af8 /drivers/video/fbdev/vt8500lcdfb.c | |
parent | 28318ac1742ab17eb8ba1c1be0dea4cc14b5b2ea (diff) | |
download | linux-8a48ac339398f21282985bff16552447d41dcfb2.tar.xz |
video: constify fb ops across all drivers
Now that the fbops member of struct fb_info is const, we can start
making the ops const as well.
This does not cover all drivers; some actually modify the fbops struct,
for example to adjust for different configurations, and others do more
involved things that I'd rather not touch in practically obsolete
drivers. Mostly this is the low hanging fruit where we can add "const"
and be done with it.
v3:
- un-constify atyfb, mb862xx, nvidia and uvesabf (0day)
v2:
- fix typo (Christophe de Dinechin)
- use "static const" instead of "const static" in mx3fb.c
- also constify smscufx.c
Cc: linux-fbdev@vger.kernel.org
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/ce67f14435f3af498f2e8bf35ce4be11f7504132.1575390740.git.jani.nikula@intel.com
Diffstat (limited to 'drivers/video/fbdev/vt8500lcdfb.c')
-rw-r--r-- | drivers/video/fbdev/vt8500lcdfb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/fbdev/vt8500lcdfb.c b/drivers/video/fbdev/vt8500lcdfb.c index be8d9702cbb2..f744479dc7df 100644 --- a/drivers/video/fbdev/vt8500lcdfb.c +++ b/drivers/video/fbdev/vt8500lcdfb.c @@ -238,7 +238,7 @@ static int vt8500lcd_blank(int blank, struct fb_info *info) return 0; } -static struct fb_ops vt8500lcd_ops = { +static const struct fb_ops vt8500lcd_ops = { .owner = THIS_MODULE, .fb_set_par = vt8500lcd_set_par, .fb_setcolreg = vt8500lcd_setcolreg, |