summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulia Lawall <Julia.Lawall@lip6.fr>2016-09-11 08:14:42 -0400
committerMark Brown <broonie@kernel.org>2016-09-12 15:04:54 -0400
commitc59b24f87b997f6de6e2511b9ef702685042e089 (patch)
treeaa03942b9f87c8e616031da2c81e32951a966111
parent52abe54138d9b14b4a0a17742a53d2411bc5b167 (diff)
ASoC: constify gpio_chip structures
These structures are only used to copy into other structures, so declare them as const. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @r disable optional_qualifier@ identifier i; position p; @@ static struct gpio_chip i@p = { ... }; @ok@ identifier r.i; expression e; position p; @@ e = i@p; @bad@ position p != {r.p,ok.p}; identifier r.i; struct gpio_chip e; @@ e@i@p @depends on !bad disable optional_qualifier@ identifier r.i; @@ static +const struct gpio_chip i = { ... }; // </smpl> Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr> Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r--sound/soc/codecs/rt5677.c2
-rw-r--r--sound/soc/codecs/wm5100.c2
-rw-r--r--sound/soc/codecs/wm8903.c2
-rw-r--r--sound/soc/codecs/wm8962.c2
-rw-r--r--sound/soc/codecs/wm8996.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/sound/soc/codecs/rt5677.c b/sound/soc/codecs/rt5677.c
index da9483c1c6fb..43ec78eb27f1 100644
--- a/sound/soc/codecs/rt5677.c
+++ b/sound/soc/codecs/rt5677.c
@@ -4657,7 +4657,7 @@ static int rt5677_to_irq(struct gpio_chip *chip, unsigned offset)
4657 return regmap_irq_get_virq(data, irq); 4657 return regmap_irq_get_virq(data, irq);
4658} 4658}
4659 4659
4660static struct gpio_chip rt5677_template_chip = { 4660static const struct gpio_chip rt5677_template_chip = {
4661 .label = "rt5677", 4661 .label = "rt5677",
4662 .owner = THIS_MODULE, 4662 .owner = THIS_MODULE,
4663 .direction_output = rt5677_gpio_direction_out, 4663 .direction_output = rt5677_gpio_direction_out,
diff --git a/sound/soc/codecs/wm5100.c b/sound/soc/codecs/wm5100.c
index 512a9d25fe6f..28ab01b67581 100644
--- a/sound/soc/codecs/wm5100.c
+++ b/sound/soc/codecs/wm5100.c
@@ -2285,7 +2285,7 @@ static int wm5100_gpio_direction_in(struct gpio_chip *chip, unsigned offset)
2285 (1 << WM5100_GP1_DIR_SHIFT)); 2285 (1 << WM5100_GP1_DIR_SHIFT));
2286} 2286}
2287 2287
2288static struct gpio_chip wm5100_template_chip = { 2288static const struct gpio_chip wm5100_template_chip = {
2289 .label = "wm5100", 2289 .label = "wm5100",
2290 .owner = THIS_MODULE, 2290 .owner = THIS_MODULE,
2291 .direction_output = wm5100_gpio_direction_out, 2291 .direction_output = wm5100_gpio_direction_out,
diff --git a/sound/soc/codecs/wm8903.c b/sound/soc/codecs/wm8903.c
index a26ca490cf31..db901f0ba27e 100644
--- a/sound/soc/codecs/wm8903.c
+++ b/sound/soc/codecs/wm8903.c
@@ -1830,7 +1830,7 @@ static void wm8903_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
1830 !!value << WM8903_GP1_LVL_SHIFT); 1830 !!value << WM8903_GP1_LVL_SHIFT);
1831} 1831}
1832 1832
1833static struct gpio_chip wm8903_template_chip = { 1833static const struct gpio_chip wm8903_template_chip = {
1834 .label = "wm8903", 1834 .label = "wm8903",
1835 .owner = THIS_MODULE, 1835 .owner = THIS_MODULE,
1836 .request = wm8903_gpio_request, 1836 .request = wm8903_gpio_request,
diff --git a/sound/soc/codecs/wm8962.c b/sound/soc/codecs/wm8962.c
index f3109da24769..11df897cfd33 100644
--- a/sound/soc/codecs/wm8962.c
+++ b/sound/soc/codecs/wm8962.c
@@ -3357,7 +3357,7 @@ static int wm8962_gpio_direction_out(struct gpio_chip *chip,
3357 return 0; 3357 return 0;
3358} 3358}
3359 3359
3360static struct gpio_chip wm8962_template_chip = { 3360static const struct gpio_chip wm8962_template_chip = {
3361 .label = "wm8962", 3361 .label = "wm8962",
3362 .owner = THIS_MODULE, 3362 .owner = THIS_MODULE,
3363 .request = wm8962_gpio_request, 3363 .request = wm8962_gpio_request,
diff --git a/sound/soc/codecs/wm8996.c b/sound/soc/codecs/wm8996.c
index a73044251218..11c9bf5aad9c 100644
--- a/sound/soc/codecs/wm8996.c
+++ b/sound/soc/codecs/wm8996.c
@@ -2184,7 +2184,7 @@ static int wm8996_gpio_direction_in(struct gpio_chip *chip, unsigned offset)
2184 (1 << WM8996_GP1_DIR_SHIFT)); 2184 (1 << WM8996_GP1_DIR_SHIFT));
2185} 2185}
2186 2186
2187static struct gpio_chip wm8996_template_chip = { 2187static const struct gpio_chip wm8996_template_chip = {
2188 .label = "wm8996", 2188 .label = "wm8996",
2189 .owner = THIS_MODULE, 2189 .owner = THIS_MODULE,
2190 .direction_output = wm8996_gpio_direction_out, 2190 .direction_output = wm8996_gpio_direction_out,