Commit 15681598 authored by Vaibhav Agarwal's avatar Vaibhav Agarwal Committed by Greg Kroah-Hartman
Browse files

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: default avatarVaibhav Agarwal <vaibhav.agarwal@linaro.org>
Reviewed-by: default avatarMark Greer <mgreer@animalcreek.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@google.com>
parent aaef32a6
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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,