1
0
Fork 0
alistair23-linux/sound/soc/tegra
Julia Lawall 8a7a282b78 ASoC: tegra: constify snd_soc_ops structures
Check for snd_soc_ops structures that are only stored in the ops field of a
snd_soc_dai_link structure.  This field is declared const, so snd_soc_ops
structures that have this property can be declared as const also.

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 snd_soc_ops i@p = { ... };

@ok1@
identifier r.i;
struct snd_soc_dai_link e;
position p;
@@
e.ops = &i@p;

@ok2@
identifier r.i, e;
position p;
@@
struct snd_soc_dai_link e[] = { ..., { .ops = &i@p, }, ..., };

@bad@
position p != {r.p,ok1.p,ok2.p};
identifier r.i;
struct snd_soc_ops e;
@@
e@i@p

@depends on !bad disable optional_qualifier@
identifier r.i;
@@
static
+const
 struct snd_soc_ops i = { ... };
// </smpl>

The effect on the layout of the .o files is shown by the following output of
the size command, first before then after the transformation:

  text    data     bss     dec     hex filename
   3143    1888     384    5415    1527 sound/soc/tegra/tegra_alc5632.o
   3191    1840     384    5415    1527 sound/soc/tegra/tegra_alc5632.o

   text    data     bss     dec     hex filename
   3672    2176     768    6616    19d8 sound/soc/tegra/tegra_max98090.o
   3720    2128     768    6616    19d8 sound/soc/tegra/tegra_max98090.o

   text    data     bss     dec     hex filename
   2770    1856     384    5010    1392 sound/soc/tegra/tegra_rt5640.o
   2818    1808     384    5010    1392 sound/soc/tegra/tegra_rt5640.o

   text    data     bss     dec     hex filename
   4412    2176     768    7356    1cbc sound/soc/tegra/tegra_rt5677.o
   4460    2128     768    7356    1cbc sound/soc/tegra/tegra_rt5677.o

   text    data     bss     dec     hex filename
   2442    1536       0    3978     f8a sound/soc/tegra/tegra_sgtl5000.o
   2490    1480       0    3970     f82 sound/soc/tegra/tegra_sgtl5000.o

   text    data     bss     dec     hex filename
   2105    1536       0    3641     e39 sound/soc/tegra/tegra_wm8753.o
   2153    1480       0    3633     e31 sound/soc/tegra/tegra_wm8753.o

   text    data     bss     dec     hex filename
   3755    1888     768    6411    190b sound/soc/tegra/tegra_wm8903.o
   3803    1840     768    6411    190b sound/soc/tegra/tegra_wm8903.o

   text    data     bss     dec     hex filename
   2121    1536       0    3657     e49 sound/soc/tegra/trimslice.o
   2169    1480       0    3649     e41 sound/soc/tegra/trimslice.o

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: Mark Brown <broonie@kernel.org>
2016-10-24 18:34:41 +01:00
..
Kconfig ASoC: tegra: add tegra sgtl5000 machine driver 2016-08-12 13:36:54 +01:00
Makefile ASoC: tegra: add tegra sgtl5000 machine driver 2016-08-12 13:36:54 +01:00
tegra20_ac97.c Driver core patches for 3.19-rc1 2014-12-14 16:10:09 -08:00
tegra20_ac97.h ASoC: tegra: move AC97 clock handling to the machine driver 2014-03-25 18:54:50 +00:00
tegra20_das.c ASoC: tegra: Use devm_ioremap_resource instead of open code 2015-08-26 18:58:46 +01:00
tegra20_das.h ASoC: convert Tegra20 DAS driver to regmap 2012-04-13 19:16:53 +01:00
tegra20_i2s.c ASoC: tegra: Use devm_ioremap_resource instead of open code 2015-08-26 18:58:46 +01:00
tegra20_i2s.h ASoC: tegra: Use common DAI DMA data struct 2013-04-03 18:13:34 +01:00
tegra20_spdif.c ASoC: tegra: Use devm_ioremap_resource instead of open code 2015-08-26 18:58:46 +01:00
tegra20_spdif.h ASoC: tegra: Use common DAI DMA data struct 2013-04-03 18:13:34 +01:00
tegra30_ahub.c ASoC: tegra: Use devm_ioremap_resource instead of open code 2015-08-26 18:58:46 +01:00
tegra30_ahub.h ASoC: tegra: convert to standard DMA DT bindings 2013-12-11 16:43:57 -07:00
tegra30_i2s.c ASoC: tegra: Use devm_ioremap_resource instead of open code 2015-08-26 18:58:46 +01:00
tegra30_i2s.h ASoC: tegra: convert to standard DMA DT bindings 2013-12-11 16:43:57 -07:00
tegra_alc5632.c ASoC: tegra: constify snd_soc_ops structures 2016-10-24 18:34:41 +01:00
tegra_asoc_utils.c ASoC: tegra: support new register layouts in Tegra124 2013-10-14 14:56:27 +01:00
tegra_asoc_utils.h ASoC: tegra: Fix typo in include guard 2014-08-22 13:35:44 -05:00
tegra_max98090.c ASoC: tegra: constify snd_soc_ops structures 2016-10-24 18:34:41 +01:00
tegra_pcm.c ARM: SoC cleanups for 3.14 2014-01-23 18:36:55 -08:00
tegra_pcm.h ASoC: tegra: convert to standard DMA DT bindings 2013-12-11 16:43:57 -07:00
tegra_rt5640.c ASoC: tegra: constify snd_soc_ops structures 2016-10-24 18:34:41 +01:00
tegra_rt5677.c ASoC: tegra: constify snd_soc_ops structures 2016-10-24 18:34:41 +01:00
tegra_sgtl5000.c ASoC: tegra: constify snd_soc_ops structures 2016-10-24 18:34:41 +01:00
tegra_wm8753.c ASoC: tegra: constify snd_soc_ops structures 2016-10-24 18:34:41 +01:00
tegra_wm8903.c ASoC: tegra: constify snd_soc_ops structures 2016-10-24 18:34:41 +01:00
tegra_wm9712.c ASoC: tegra_wm9712: Use card DAPM context to access widgets 2015-04-08 21:10:01 +01:00
trimslice.c ASoC: tegra: constify snd_soc_ops structures 2016-10-24 18:34:41 +01:00