Commit 016b9eb0c52ed7349ffdb42b4e51c93ad1f5d90a

Authored by Brian Norris
Committed by Sekhar Nori
1 parent 53ed781284

ARM: davinci: dm365 evm: fix unused variable warning

If neither CONFIG_SND_DM365_AIC3X_CODEC nor CONFIG_SND_DM365_VOICE_CODEC
are defined, we may get warnings like:

    arch/arm/mach-davinci/board-dm365-evm.c:179:33: warning: 'dm365_evm_snd_data' defined but not used [-Wunused-variable]

To fix this, just mark the struct as __maybe_unused.

Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Cc: Sekhar Nori <nsekhar@ti.com>
Cc: Kevin Hilman <khilman@deeprootsystems.com>
Cc: Russell King <linux@arm.linux.org.uk>
Signed-off-by: Sekhar Nori <nsekhar@ti.com>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

arch/arm/mach-davinci/board-dm365-evm.c
... ... @@ -176,7 +176,7 @@
176 176 .context = (void *)0x7f00,
177 177 };
178 178  
179   -static struct snd_platform_data dm365_evm_snd_data = {
  179 +static struct snd_platform_data dm365_evm_snd_data __maybe_unused = {
180 180 .asp_chan_q = EVENTQ_3,
181 181 };
182 182