diff options
author | Gustavo A. R. Silva <garsilva@embeddedor.com> | 2017-08-01 17:20:39 +0200 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | 2017-08-01 17:20:39 +0200 |
commit | c9742729b3843a40640d07cdcdc336d0366b4343 (patch) | |
tree | 78b5118757964a62edbbe06338031ea50c62b326 /drivers/video/fbdev/omap | |
parent | 40445365a43fff55b1c4d00b3ce2dbfdf77a34a7 (diff) | |
download | lwn-c9742729b3843a40640d07cdcdc336d0366b4343.tar.gz lwn-c9742729b3843a40640d07cdcdc336d0366b4343.zip |
video: cobalt_lcdfb: constify fb_fix_screeninfo structure
This structure is only used to copy into other structures,
so declare it as const.
This issue was detected using Coccinelle and the following semantic patch:
@r disable optional_qualifier@
identifier i;
position p;
@@
static struct fb_fix_screeninfo i@p = { ... };
@ok@
identifier r.i;
expression e;
position p;
@@
e = i@p
@bad@
position p != {r.p,ok.p};
identifier r.i;
struct fb_fix_screeninfo e;
@@
e@i@p
@depends on !bad disable optional_qualifier@
identifier r.i;
@@
static
+const
struct fb_fix_screeninfo i = { ... };
Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Diffstat (limited to 'drivers/video/fbdev/omap')
0 files changed, 0 insertions, 0 deletions