From: laurent.pinchart@ideasonboard.com (Laurent Pinchart)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/3] drm/bridge: make drm_connector_funcs structures const
Date: Tue, 08 Aug 2017 15:03:49 +0300 [thread overview]
Message-ID: <5410432.rqMauYSQNE@avalon> (raw)
In-Reply-To: <1502191712-11231-2-git-send-email-bhumirks@gmail.com>
Hi Bhumika,
Thank you for the patch.
On Tuesday 08 Aug 2017 16:58:30 Bhumika Goyal wrote:
> Make these const as they are only passed to the function
> drm_connector_init and the corresponding argument is of type const.
> Done using Coccinelle
>
> @match disable optional_qualifier@
> identifier s;
> @@
> static struct drm_connector_funcs s = {...};
>
> @ref@
> position p;
> identifier match.s;
> @@
> s at p
>
> @good1@
> identifier match.s;
> expression e1,e2;
> position ref.p;
> @@
> drm_connector_init(e1,e2,&s at p,...)
>
> @bad depends on !good1@
> position ref.p;
> identifier match.s;
> @@
> s at p
>
> @depends on forall !bad disable optional_qualifier@
> identifier match.s;
> @@
> static
> + const
> struct drm_connector_funcs s;
>
> Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
I can't judge the semantic patch, but the C code change looks good to me.
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> ---
> drivers/gpu/drm/bridge/adv7511/adv7511_drv.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/bridge/adv7511/adv7511_drv.c
> b/drivers/gpu/drm/bridge/adv7511/adv7511_drv.c index ff9792d..ee16635
> 100644
> --- a/drivers/gpu/drm/bridge/adv7511/adv7511_drv.c
> +++ b/drivers/gpu/drm/bridge/adv7511/adv7511_drv.c
> @@ -785,7 +785,7 @@ static int adv7511_connector_get_modes(struct
> drm_connector *connector) return adv7511_detect(adv, connector);
> }
>
> -static struct drm_connector_funcs adv7511_connector_funcs = {
> +static const struct drm_connector_funcs adv7511_connector_funcs = {
> .dpms = drm_atomic_helper_connector_dpms,
> .fill_modes = drm_helper_probe_single_connector_modes,
> .detect = adv7511_connector_detect,
--
Regards,
Laurent Pinchart
next prev parent reply other threads:[~2017-08-08 12:03 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-08-08 11:28 [PATCH 0/3] drm: make drm_connector_funcs structures const Bhumika Goyal
2017-08-08 11:28 ` [PATCH 1/3] drm/bridge: " Bhumika Goyal
2017-08-08 12:03 ` Laurent Pinchart [this message]
2017-08-08 11:28 ` [PATCH 2/3] drm/sun4i: " Bhumika Goyal
2017-08-08 11:28 ` [PATCH 3/3] drm/rockchip: " Bhumika Goyal
2017-08-09 10:32 ` [PATCH 0/3] drm: " Archit Taneja
2017-08-09 16:37 ` Daniel Vetter
2017-08-10 6:20 ` Bhumika Goyal
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5410432.rqMauYSQNE@avalon \
--to=laurent.pinchart@ideasonboard.com \
--cc=linux-arm-kernel@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox