Message ID | 20240312-aaci-unused-v1-1-09be643f67c2@linutronix.de (mailing list archive) |
---|---|
State | Accepted |
Commit | 5a94041db154bc55274c35a9cde2206efb5e9f80 |
Headers | show |
Series | ALSA: aaci: Delete unused variable in aaci_do_suspend | expand |
On Tue, 12 Mar 2024 12:22:28 +0100, Thomas Weißschuh wrote: > > The variable aaci is not used anymore and can be deleted. > > Fixes: 792a6c51875c ("[ALSA] Fix PM support") > Signed-off-by: Thomas Weißschuh <thomas.weissschuh@linutronix.de> > --- > Note: This only seems to trigger with the series > "ALSA: Clean up with DEFINE_SIMPLE_DEV_PM_OPS()" applied. > > (Encountered on next-20240312) > > [0] https://lore.kernel.org/all/20240207155140.18238-1-tiwai@suse.de/ Thanks, applied now. Takashi
diff --git a/sound/arm/aaci.c b/sound/arm/aaci.c index 0817ad21af74..2bfffdd33864 100644 --- a/sound/arm/aaci.c +++ b/sound/arm/aaci.c @@ -740,7 +740,6 @@ static const struct snd_pcm_ops aaci_capture_ops = { #ifdef CONFIG_PM 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; }
The variable aaci is not used anymore and can be deleted. Fixes: 792a6c51875c ("[ALSA] Fix PM support") Signed-off-by: Thomas Weißschuh <thomas.weissschuh@linutronix.de> --- Note: This only seems to trigger with the series "ALSA: Clean up with DEFINE_SIMPLE_DEV_PM_OPS()" applied. (Encountered on next-20240312) [0] https://lore.kernel.org/all/20240207155140.18238-1-tiwai@suse.de/ --- sound/arm/aaci.c | 1 - 1 file changed, 1 deletion(-) --- base-commit: 90d35da658da8cff0d4ecbb5113f5fac9d00eb72 change-id: 20240312-aaci-unused-d74171092e50 Best regards,