[alsa-devel] [PATCH] ASoC: sst-bxt-da7219_max98357a: fix obsoleted initializer for array
From: Colin Ian King colin.king@canonical.com
Smatch reports below warnings:
bxt_da7219_max98357a.c:352:9: warning: obsolete array initializer, use C99 syntax
An earlier commit cleaned up similar warnings, however, a recent commit 43c02ede76a60de ("ASoC: Intel: Add DMIC channel constraint for bxt machine") re-introduced the older initializer style. So fix this warning to make the code consistent.
Signed-off-by: Colin Ian King colin.king@canonical.com --- sound/soc/intel/boards/bxt_da7219_max98357a.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sound/soc/intel/boards/bxt_da7219_max98357a.c b/sound/soc/intel/boards/bxt_da7219_max98357a.c index 865a21e..bff80b4 100644 --- a/sound/soc/intel/boards/bxt_da7219_max98357a.c +++ b/sound/soc/intel/boards/bxt_da7219_max98357a.c @@ -348,7 +348,7 @@ static struct snd_soc_dai_link broxton_dais[] = { .dynamic = 1, .ops = &broxton_refcap_ops, }, - [BXT_DPCM_AUDIO_DMIC_CP] + [BXT_DPCM_AUDIO_DMIC_CP] = { .name = "Bxt Audio DMIC cap", .stream_name = "dmiccap",
On 2016年10月18日 07:02, Colin King wrote:
From: Colin Ian King colin.king@canonical.com
Smatch reports below warnings:
bxt_da7219_max98357a.c:352:9: warning: obsolete array initializer, use C99 syntax
An earlier commit cleaned up similar warnings, however, a recent commit 43c02ede76a60de ("ASoC: Intel: Add DMIC channel constraint for bxt machine") re-introduced the older initializer style. So fix this warning to make the code consistent.
Signed-off-by: Colin Ian King colin.king@canonical.com
sound/soc/intel/boards/bxt_da7219_max98357a.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
Reviewed-by: Takashi Sakamoto o-takashi@sakamocchi.jp
diff --git a/sound/soc/intel/boards/bxt_da7219_max98357a.c b/sound/soc/intel/boards/bxt_da7219_max98357a.c index 865a21e..bff80b4 100644 --- a/sound/soc/intel/boards/bxt_da7219_max98357a.c +++ b/sound/soc/intel/boards/bxt_da7219_max98357a.c @@ -348,7 +348,7 @@ static struct snd_soc_dai_link broxton_dais[] = { .dynamic = 1, .ops = &broxton_refcap_ops, },
- [BXT_DPCM_AUDIO_DMIC_CP]
- [BXT_DPCM_AUDIO_DMIC_CP] = { .name = "Bxt Audio DMIC cap", .stream_name = "dmiccap",
On Mon, Oct 17, 2016 at 11:02:56PM +0100, Colin King wrote:
From: Colin Ian King colin.king@canonical.com
Smatch reports below warnings:
bxt_da7219_max98357a.c:352:9: warning: obsolete array initializer, use C99 syntax
An earlier commit cleaned up similar warnings, however, a recent commit 43c02ede76a60de ("ASoC: Intel: Add DMIC channel constraint for bxt machine") re-introduced the older initializer style. So fix this warning to make the code consistent.
Acked-by: Vinod Koul vinod.koul@intel.com
participants (3)
-
Colin King
-
Takashi Sakamoto
-
Vinod Koul