diff options
author | Joe Perches <joe@perches.com> | 2010-07-12 13:50:26 -0700 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2010-07-13 12:33:59 +0100 |
commit | 8ff23610a6c2ec8abaab6ae14d9ed8f59c1f944c (patch) | |
tree | 1c4d1e0fb468d72a014b72c7265f7d6ea28781db /sound/soc/blackfin/bf5xx-tdm.c | |
parent | 4d53952a396d7fcde295b6eedee1f588dfb8464c (diff) | |
download | blackbird-op-linux-8ff23610a6c2ec8abaab6ae14d9ed8f59c1f944c.tar.gz blackbird-op-linux-8ff23610a6c2ec8abaab6ae14d9ed8f59c1f944c.zip |
ASoC: Remove unnecessary casts of private_data
Signed-off-by: Joe Perches <joe@perches.com>
Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/blackfin/bf5xx-tdm.c')
-rw-r--r-- | sound/soc/blackfin/bf5xx-tdm.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sound/soc/blackfin/bf5xx-tdm.c b/sound/soc/blackfin/bf5xx-tdm.c index 4b360124083e..24c14269f4bc 100644 --- a/sound/soc/blackfin/bf5xx-tdm.c +++ b/sound/soc/blackfin/bf5xx-tdm.c @@ -210,8 +210,7 @@ static int bf5xx_tdm_set_channel_map(struct snd_soc_dai *dai, #ifdef CONFIG_PM static int bf5xx_tdm_suspend(struct snd_soc_dai *dai) { - struct sport_device *sport = - (struct sport_device *)dai->private_data; + struct sport_device *sport = dai->private_data; if (!dai->active) return 0; @@ -225,8 +224,7 @@ static int bf5xx_tdm_suspend(struct snd_soc_dai *dai) static int bf5xx_tdm_resume(struct snd_soc_dai *dai) { int ret; - struct sport_device *sport = - (struct sport_device *)dai->private_data; + struct sport_device *sport = dai->private_data; if (!dai->active) return 0; |