linux-stable/drivers/gpu/drm/pl111
Bhumika Goyal a5cb37d800 drm: make drm_mode_config_func const
Make these structures const as they are only stored in the funcs field
of a drm_mode_config structure which is of type const.
Done using Coccinelle:

@match disable optional_qualifier@
identifier s;
@@
static struct drm_mode_config_funcs s = {...};

@ref@
position p;
identifier match.s;
@@
s@p

@good1@
identifier y;
position ref.p;
identifier match.s;
@@
struct drm_mode_config y = {...,.funcs=&s@p,...};

@good2@
struct drm_mode_config y;
identifier match.s;
position ref.p;
@@
y.funcs = &s@p

@bad depends on  !good1 && !good2@
position ref.p;
identifier match.s;
@@
s@p

@depends on forall !bad disable optional_qualifier@
identifier match.s;
@@
static
+ const
struct drm_mode_config_funcs s;

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/1502204751-16525-1-git-send-email-bhumirks@gmail.com
2017-08-09 18:39:34 +02:00
..
Kconfig drm/pl111: select DRM_PANEL 2017-05-31 09:32:32 +02:00
Makefile drm/pl111: Add a debugfs node to dump our registers. 2017-05-19 11:13:57 -07:00
pl111_connector.c drm: Nuke drm_atomic_helper_connector_dpms 2017-08-08 14:48:48 +02:00
pl111_debugfs.c drm/pl111: Add a debugfs node to dump our registers. 2017-05-19 11:13:57 -07:00
pl111_display.c drm: Plumb modifiers through plane init 2017-08-01 17:50:06 +01:00
pl111_drm.h drm/pl111: Add a debugfs node to dump our registers. 2017-05-19 11:13:57 -07:00
pl111_drv.c drm: make drm_mode_config_func const 2017-08-09 18:39:34 +02:00