From: Vaibhav Agarwal Date: Thu, 4 Aug 2016 09:44:31 +0000 (+0530) Subject: greybus: audio: Update dai_driver table with appropriate fields X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=1568159868f6b6c4ab17aa28ef4d5d4fc02317f1;p=linux-beck.git greybus: audio: Update dai_driver table with appropriate fields 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 Reviewed-by: Mark Greer Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/greybus/audio_codec.c b/drivers/staging/greybus/audio_codec.c index 70b9a797afc8..a6f843784f2f 100644 --- a/drivers/staging/greybus/audio_codec.c +++ b/drivers/staging/greybus/audio_codec.c @@ -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,