diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2014-05-19 05:41:46 -0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-05-20 17:54:54 -0400 |
commit | 0596f70069bb5ab34eea980c14fad1041f2abae5 (patch) | |
tree | 66f75e16ed4bb434d1c059dba58795fed4a2feb2 /sound | |
parent | b7a80379aa52d033d2a7c2390c8e80bd027758bf (diff) |
ASoC: omap: Replace instances of rtd->codec->card with rtd->card
No need to go via the CODEC to get a pointer to the card. This will help to
eventually remove the card field from the snd_soc_codec struct.
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Acked-by: Jarkko Nikula <jarkko.nikula@bitmer.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/omap/omap-abe-twl6040.c | 5 | ||||
-rw-r--r-- | sound/soc/omap/omap-twl4030.c | 5 | ||||
-rw-r--r-- | sound/soc/omap/rx51.c | 2 |
3 files changed, 5 insertions, 7 deletions
diff --git a/sound/soc/omap/omap-abe-twl6040.c b/sound/soc/omap/omap-abe-twl6040.c index 1a89e5b1be16..cec836ed0c01 100644 --- a/sound/soc/omap/omap-abe-twl6040.c +++ b/sound/soc/omap/omap-abe-twl6040.c | |||
@@ -47,8 +47,7 @@ static int omap_abe_hw_params(struct snd_pcm_substream *substream, | |||
47 | { | 47 | { |
48 | struct snd_soc_pcm_runtime *rtd = substream->private_data; | 48 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
49 | struct snd_soc_dai *codec_dai = rtd->codec_dai; | 49 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
50 | struct snd_soc_codec *codec = rtd->codec; | 50 | struct snd_soc_card *card = rtd->card; |
51 | struct snd_soc_card *card = codec->card; | ||
52 | struct abe_twl6040 *priv = snd_soc_card_get_drvdata(card); | 51 | struct abe_twl6040 *priv = snd_soc_card_get_drvdata(card); |
53 | int clk_id, freq; | 52 | int clk_id, freq; |
54 | int ret; | 53 | int ret; |
@@ -168,7 +167,7 @@ static const struct snd_soc_dapm_route audio_map[] = { | |||
168 | static int omap_abe_twl6040_init(struct snd_soc_pcm_runtime *rtd) | 167 | static int omap_abe_twl6040_init(struct snd_soc_pcm_runtime *rtd) |
169 | { | 168 | { |
170 | struct snd_soc_codec *codec = rtd->codec; | 169 | struct snd_soc_codec *codec = rtd->codec; |
171 | struct snd_soc_card *card = codec->card; | 170 | struct snd_soc_card *card = rtd->card; |
172 | struct abe_twl6040 *priv = snd_soc_card_get_drvdata(card); | 171 | struct abe_twl6040 *priv = snd_soc_card_get_drvdata(card); |
173 | int hs_trim; | 172 | int hs_trim; |
174 | int ret = 0; | 173 | int ret = 0; |
diff --git a/sound/soc/omap/omap-twl4030.c b/sound/soc/omap/omap-twl4030.c index 0c83e206e957..64141db311b2 100644 --- a/sound/soc/omap/omap-twl4030.c +++ b/sound/soc/omap/omap-twl4030.c | |||
@@ -55,8 +55,7 @@ static int omap_twl4030_hw_params(struct snd_pcm_substream *substream, | |||
55 | struct snd_soc_pcm_runtime *rtd = substream->private_data; | 55 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
56 | struct snd_soc_dai *codec_dai = rtd->codec_dai; | 56 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
57 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; | 57 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
58 | struct snd_soc_codec *codec = rtd->codec; | 58 | struct snd_soc_card *card = rtd->card; |
59 | struct snd_soc_card *card = codec->card; | ||
60 | unsigned int fmt; | 59 | unsigned int fmt; |
61 | int ret; | 60 | int ret; |
62 | 61 | ||
@@ -179,7 +178,7 @@ static inline void twl4030_disconnect_pin(struct snd_soc_dapm_context *dapm, | |||
179 | static int omap_twl4030_init(struct snd_soc_pcm_runtime *rtd) | 178 | static int omap_twl4030_init(struct snd_soc_pcm_runtime *rtd) |
180 | { | 179 | { |
181 | struct snd_soc_codec *codec = rtd->codec; | 180 | struct snd_soc_codec *codec = rtd->codec; |
182 | struct snd_soc_card *card = codec->card; | 181 | struct snd_soc_card *card = rtd->card; |
183 | struct snd_soc_dapm_context *dapm = &codec->dapm; | 182 | struct snd_soc_dapm_context *dapm = &codec->dapm; |
184 | struct omap_tw4030_pdata *pdata = dev_get_platdata(card->dev); | 183 | struct omap_tw4030_pdata *pdata = dev_get_platdata(card->dev); |
185 | struct omap_twl4030 *priv = snd_soc_card_get_drvdata(card); | 184 | struct omap_twl4030 *priv = snd_soc_card_get_drvdata(card); |
diff --git a/sound/soc/omap/rx51.c b/sound/soc/omap/rx51.c index 866578bcda55..6951dc812055 100644 --- a/sound/soc/omap/rx51.c +++ b/sound/soc/omap/rx51.c | |||
@@ -286,7 +286,7 @@ static const struct snd_kcontrol_new aic34_rx51_controls[] = { | |||
286 | static int rx51_aic34_init(struct snd_soc_pcm_runtime *rtd) | 286 | static int rx51_aic34_init(struct snd_soc_pcm_runtime *rtd) |
287 | { | 287 | { |
288 | struct snd_soc_codec *codec = rtd->codec; | 288 | struct snd_soc_codec *codec = rtd->codec; |
289 | struct snd_soc_card *card = codec->card; | 289 | struct snd_soc_card *card = rtd->card; |
290 | struct rx51_audio_pdata *pdata = snd_soc_card_get_drvdata(card); | 290 | struct rx51_audio_pdata *pdata = snd_soc_card_get_drvdata(card); |
291 | 291 | ||
292 | struct snd_soc_dapm_context *dapm = &codec->dapm; | 292 | struct snd_soc_dapm_context *dapm = &codec->dapm; |