ALSA: arm: remove an unused variable

Message ID 20240213095336.453562-1-arnd@kernel.org
State New
Headers
Series ALSA: arm: remove an unused variable |

Commit Message

Arnd Bergmann Feb. 13, 2024, 9:53 a.m. UTC
  From: Arnd Bergmann <arnd@arndb.de>

The only user of a variable got removed a while ago, but I only now
ran into this on randconfig builds with clang:

sound/arm/aaci.c:742:15: error: unused variable 'aaci' [-Werror,-Wunused-variable]
  742 |         struct aaci *aaci = card->private_data;

Remove the unnecessary variable.

Fixes: 793e0fca25fa ("ALSA: arm: Remove superfluous snd_pcm_suspend*() calls")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
 sound/arm/aaci.c | 1 -
 1 file changed, 1 deletion(-)
  

Patch

diff --git a/sound/arm/aaci.c b/sound/arm/aaci.c
index f64896564728..c3340b8ff3da 100644
--- a/sound/arm/aaci.c
+++ b/sound/arm/aaci.c
@@ -739,7 +739,6 @@  static const struct snd_pcm_ops aaci_capture_ops = {
  */
 static int aaci_do_suspend(struct snd_card *card)
 {
-	struct aaci *aaci = card->private_data;
 	snd_power_change_state(card, SNDRV_CTL_POWER_D3cold);
 	return 0;
 }