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


Groups > linux.kernel > #1708398 > unrolled thread

[PATCH 02/17] pinctrl: artpec6: constify pinconf_ops, pinctrl_ops, and pinmux_ops structures

Started byJulia Lawall <Julia.Lawall@lip6.fr>
First post2017-08-10 12:40 +0200
Last post2017-08-10 14:40 +0200
Articles 2 — 2 participants

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

  [PATCH 02/17] pinctrl: artpec6: constify pinconf_ops, pinctrl_ops, and pinmux_ops structures Julia Lawall <Julia.Lawall@lip6.fr> - 2017-08-10 12:40 +0200
    Re: [PATCH 02/17] pinctrl: artpec6: constify pinconf_ops,  pinctrl_ops, and pinmux_ops structures Lars Persson <lars.persson@axis.com> - 2017-08-10 14:40 +0200

#1708398 — [PATCH 02/17] pinctrl: artpec6: constify pinconf_ops, pinctrl_ops, and pinmux_ops structures

FromJulia Lawall <Julia.Lawall@lip6.fr>
Date2017-08-10 12:40 +0200
Subject[PATCH 02/17] pinctrl: artpec6: constify pinconf_ops, pinctrl_ops, and pinmux_ops structures
Message-ID<ucT2F-4pl-1@gated-at.bofh.it>
This pinctrl_ops structure is only stored in the const pctlops
field of a pinctrl_desc structure. Make the pinctrl_ops structure
const as well.

Done with the help of Coccinelle.

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>

---
 drivers/pinctrl/pinctrl-artpec6.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/pinctrl/pinctrl-artpec6.c b/drivers/pinctrl/pinctrl-artpec6.c
index 357516d..e33781c 100644
--- a/drivers/pinctrl/pinctrl-artpec6.c
+++ b/drivers/pinctrl/pinctrl-artpec6.c
@@ -445,7 +445,7 @@ static unsigned int artpec6_pconf_drive_field_to_mA(int field)
 	}
 }
 
-static struct pinctrl_ops artpec6_pctrl_ops = {
+static const struct pinctrl_ops artpec6_pctrl_ops = {
 	.get_group_pins		= artpec6_get_group_pins,
 	.get_groups_count	= artpec6_get_groups_count,
 	.get_group_name		= artpec6_get_group_name,

[toc] | [next] | [standalone]


#1708589 — Re: [PATCH 02/17] pinctrl: artpec6: constify pinconf_ops, pinctrl_ops, and pinmux_ops structures

FromLars Persson <lars.persson@axis.com>
Date2017-08-10 14:40 +0200
SubjectRe: [PATCH 02/17] pinctrl: artpec6: constify pinconf_ops, pinctrl_ops, and pinmux_ops structures
Message-ID<ucUUO-5zH-29@gated-at.bofh.it>
In reply to#1708398

On 08/10/2017 12:06 PM, Julia Lawall wrote:
> This pinctrl_ops structure is only stored in the const pctlops
> field of a pinctrl_desc structure. Make the pinctrl_ops structure
> const as well.
> 
> Done with the help of Coccinelle.
> 
> Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
> 
> ---
>   drivers/pinctrl/pinctrl-artpec6.c |    2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>  

Hi,

Acked-by: Lars Persson <lars.persson@axis.com>

BR,
  Lars

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web