summaryrefslogtreecommitdiffstats
path: root/drivers/video/fbdev/pxa168fb.c
diff options
context:
space:
mode:
authorJani Nikula <jani.nikula@intel.com>2019-12-03 17:38:50 +0100
committerJani Nikula <jani.nikula@intel.com>2019-12-05 09:57:53 +0100
commit8a48ac339398f21282985bff16552447d41dcfb2 (patch)
tree6119e9d2edf8d42b5b96974f42a0cdb2f4d07af8 /drivers/video/fbdev/pxa168fb.c
parentvideo: fbdev: intelfb: use const pointer for fb_ops (diff)
downloadlinux-8a48ac339398f21282985bff16552447d41dcfb2.tar.xz
linux-8a48ac339398f21282985bff16552447d41dcfb2.zip
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/pxa168fb.c')
-rw-r--r--drivers/video/fbdev/pxa168fb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/fbdev/pxa168fb.c b/drivers/video/fbdev/pxa168fb.c
index 1410f476e135..c672c3354a2c 100644
--- a/drivers/video/fbdev/pxa168fb.c
+++ b/drivers/video/fbdev/pxa168fb.c
@@ -545,7 +545,7 @@ static irqreturn_t pxa168fb_handle_irq(int irq, void *dev_id)
return IRQ_NONE;
}
-static struct fb_ops pxa168fb_ops = {
+static const struct fb_ops pxa168fb_ops = {
.owner = THIS_MODULE,
.fb_check_var = pxa168fb_check_var,
.fb_set_par = pxa168fb_set_par,