[PATCH] ALSA: arm: remove an unused variable

From: Arnd Bergmann
Date: Tue Feb 13 2024 - 04:55:16 EST


From: Arnd Bergmann <arnd@xxxxxxxx>

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@xxxxxxxx>
---
sound/arm/aaci.c | 1 -
1 file changed, 1 deletion(-)

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;
}
--
2.39.2