]> git.karo-electronics.de Git - linux-beck.git/commitdiff
greybus: audio: Update dai_driver table with appropriate fields
authorVaibhav Agarwal <vaibhav.agarwal@linaro.org>
Thu, 4 Aug 2016 09:44:31 +0000 (15:14 +0530)
committerGreg Kroah-Hartman <gregkh@google.com>
Thu, 4 Aug 2016 17:07:30 +0000 (19:07 +0200)
Currently, the stream name for the DAI driver is generically set to "GB
Audio Playback" and "GB Audio Capture". This is OK since we use a single
interface on APB1 but that could change in the future.  Update the DAI
driver table entries to properly reflect the interface used.

Signed-off-by: Vaibhav Agarwal <vaibhav.agarwal@linaro.org>
Reviewed-by: Mark Greer <mgreer@animalcreek.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
drivers/staging/greybus/audio_codec.c

index 70b9a797afc8c1faed38bbe01114cabc74418972..a6f843784f2f0e15c124a7aabea4bd37992f4aa3 100644 (file)
@@ -950,10 +950,10 @@ static unsigned int gbcodec_read(struct snd_soc_codec *codec,
 
 static struct snd_soc_dai_driver gbaudio_dai[] = {
        {
-               .name = "greybus-apb1",
+               .name = "apb-i2s0",
                .id = 0,
                .playback = {
-                       .stream_name = "GB Audio Playback",
+                       .stream_name = "I2S 0 Playback",
                        .rates = SNDRV_PCM_RATE_48000,
                        .formats = SNDRV_PCM_FORMAT_S16_LE,
                        .rate_max = 48000,
@@ -962,7 +962,7 @@ static struct snd_soc_dai_driver gbaudio_dai[] = {
                        .channels_max = 2,
                },
                .capture = {
-                       .stream_name = "GB Audio Capture",
+                       .stream_name = "I2S 0 Capture",
                        .rates = SNDRV_PCM_RATE_48000,
                        .formats = SNDRV_PCM_FORMAT_S16_LE,
                        .rate_max = 48000,