From: Jani Nikula Date: Tue, 3 Dec 2019 16:38:49 +0000 (+0200) Subject: video: fbdev: intelfb: use const pointer for fb_ops X-Git-Tag: v5.6-rc1~34^2~28^2~108 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=28318ac1742ab17eb8ba1c1be0dea4cc14b5b2ea;p=tomoyo%2Ftomoyo-test1.git video: fbdev: intelfb: use const pointer for fb_ops Use const for fb_ops to let us make the fbops struct const in the future. Cc: linux-fbdev@vger.kernel.org Reviewed-by: Daniel Vetter Signed-off-by: Jani Nikula Link: https://patchwork.freedesktop.org/patch/msgid/171c573bc2977a6ec374753ac7bb03a3523ca2b7.1575390740.git.jani.nikula@intel.com --- diff --git a/drivers/video/fbdev/intelfb/intelfb.h b/drivers/video/fbdev/intelfb/intelfb.h index b54db05f028d..5de703902a21 100644 --- a/drivers/video/fbdev/intelfb/intelfb.h +++ b/drivers/video/fbdev/intelfb/intelfb.h @@ -273,7 +273,7 @@ struct intelfb_vsync { struct intelfb_info { struct fb_info *info; - struct fb_ops *fbops; + const struct fb_ops *fbops; struct pci_dev *pdev; struct intelfb_hwstate save_state;