diff options
author | Takashi Iwai <[email protected]> | 2024-11-04 20:06:53 +0100 |
---|---|---|
committer | Takashi Iwai <[email protected]> | 2024-11-04 20:07:55 +0100 |
commit | 8ae4c65d7ae82fead83202448453e47078ddfde7 (patch) | |
tree | ca3c11ef6e4888e9db3ce91b5c9ec20867f4caba | |
parent | 149cb7d9537e241b43056fb4133f56832ac51b7a (diff) |
ALSA: hda: Fix unused variable warning
The previous code cleanup made a variable not really used, which now
leads to a compile warning. Let's fix it.
Fixes: cac99f73f075 ("ALSA: hda: intel: Don't free interrupt when suspending")
Reported-by: kernel test robot <[email protected]>
Closes: https://lore.kernel.org/oe-kbuild-all/[email protected]/
Link: https://patch.msgid.link/[email protected]
Signed-off-by: Takashi Iwai <[email protected]>
-rw-r--r-- | sound/pci/hda/hda_intel.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c index fc329b6a70f5..6e271777feb9 100644 --- a/sound/pci/hda/hda_intel.c +++ b/sound/pci/hda/hda_intel.c @@ -1039,13 +1039,11 @@ static int azx_suspend(struct device *dev) { struct snd_card *card = dev_get_drvdata(dev); struct azx *chip; - struct hdac_bus *bus; if (!azx_is_pm_ready(card)) return 0; chip = card->private_data; - bus = azx_bus(chip); azx_shutdown_chip(chip); trace_azx_suspend(chip); |