Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1700975 > unrolled thread

Re: [PATCH] video/mbx: constify fb_fix_screeninfo and fb_var_screeninfo structures

Started byBartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
First post2017-08-01 14:30 +0200
Last post2017-08-01 14:30 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: [PATCH] video/mbx: constify fb_fix_screeninfo and  fb_var_screeninfo structures Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> - 2017-08-01 14:30 +0200

#1700975 — Re: [PATCH] video/mbx: constify fb_fix_screeninfo and fb_var_screeninfo structures

FromBartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Date2017-08-01 14:30 +0200
SubjectRe: [PATCH] video/mbx: constify fb_fix_screeninfo and fb_var_screeninfo structures
Message-ID<u9Etd-3XT-29@gated-at.bofh.it>
On Friday, July 07, 2017 08:09:56 PM Gustavo A. R. Silva wrote:
> These structures are only used to copy into other structures,
> so declare them 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 = { ... };
> 
> The semantic patch for fb_var_screeninfo is analogous.
> 
> Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com>

Patch queued for 4.14, thanks.

Best regards,
--
Bartlomiej Zolnierkiewicz
Samsung R&D Institute Poland
Samsung Electronics

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web