diff options
author | Stephen Warren <swarren@nvidia.com> | 2013-12-10 12:34:45 -0700 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-12-18 18:54:00 +0000 |
commit | 6f2032a18969d22740a865e0b4f2e48cf5338f36 (patch) | |
tree | febca721ef37f8d0ff3cc67a29e9d29181414a33 /sound/soc/cirrus/edb93xx.c | |
parent | 237eeb1c044fdd0f406a8484ee31884e34b9dfc5 (diff) | |
download | linux-6f2032a18969d22740a865e0b4f2e48cf5338f36.tar.gz linux-6f2032a18969d22740a865e0b4f2e48cf5338f36.tar.bz2 linux-6f2032a18969d22740a865e0b4f2e48cf5338f36.zip |
ASoC: ep93xx: get rid of ep93xx-pcm-audio struct device
Modify the ep93xx PCM driver so that it's a utility library that can be
registered on each DAI, rather than a separate struct device. This is
more in line with how many recent DT-converted platforms operate, and
avoids the need for yet another struct device.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound/soc/cirrus/edb93xx.c')
-rw-r--r-- | sound/soc/cirrus/edb93xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/cirrus/edb93xx.c b/sound/soc/cirrus/edb93xx.c index c43fb214558a..4f900efc437c 100644 --- a/sound/soc/cirrus/edb93xx.c +++ b/sound/soc/cirrus/edb93xx.c @@ -63,7 +63,7 @@ static struct snd_soc_ops edb93xx_ops = { static struct snd_soc_dai_link edb93xx_dai = { .name = "CS4271", .stream_name = "CS4271 HiFi", - .platform_name = "ep93xx-pcm-audio", + .platform_name = "ep93xx-i2s", .cpu_dai_name = "ep93xx-i2s", .codec_name = "spi0.0", .codec_dai_name = "cs4271-hifi", |