Commit 2236a324 authored by Takashi Iwai's avatar Takashi Iwai

ALSA: sis7019: Fix the missing error handling

The previous cleanup with devres forgot to replace the snd_card_free()
call with the devm version.  Moreover, it still needs the manual call
of snd_card_free() at the probe error path, otherwise the reverse
order of the releases may happen.  This patch addresses those issues.

Fixes: 499ddc16 ("ALSA: sis7019: Allocate resources with device-managed APIs")
Cc: <stable@vger.kernel.org>
Link: https://lore.kernel.org/r/20220412102636.16000-28-tiwai@suse.deSigned-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 5e154dfb
...@@ -1331,7 +1331,7 @@ static int sis_chip_create(struct snd_card *card, ...@@ -1331,7 +1331,7 @@ static int sis_chip_create(struct snd_card *card,
return 0; return 0;
} }
static int snd_sis7019_probe(struct pci_dev *pci, static int __snd_sis7019_probe(struct pci_dev *pci,
const struct pci_device_id *pci_id) const struct pci_device_id *pci_id)
{ {
struct snd_card *card; struct snd_card *card;
...@@ -1352,7 +1352,7 @@ static int snd_sis7019_probe(struct pci_dev *pci, ...@@ -1352,7 +1352,7 @@ static int snd_sis7019_probe(struct pci_dev *pci,
if (!codecs) if (!codecs)
codecs = SIS_PRIMARY_CODEC_PRESENT; codecs = SIS_PRIMARY_CODEC_PRESENT;
rc = snd_card_new(&pci->dev, index, id, THIS_MODULE, rc = snd_devm_card_new(&pci->dev, index, id, THIS_MODULE,
sizeof(*sis), &card); sizeof(*sis), &card);
if (rc < 0) if (rc < 0)
return rc; return rc;
...@@ -1386,6 +1386,12 @@ static int snd_sis7019_probe(struct pci_dev *pci, ...@@ -1386,6 +1386,12 @@ static int snd_sis7019_probe(struct pci_dev *pci,
return 0; return 0;
} }
static int snd_sis7019_probe(struct pci_dev *pci,
const struct pci_device_id *pci_id)
{
return snd_card_free_on_error(&pci->dev, __snd_sis7019_probe(pci, pci_id));
}
static struct pci_driver sis7019_driver = { static struct pci_driver sis7019_driver = {
.name = KBUILD_MODNAME, .name = KBUILD_MODNAME,
.id_table = snd_sis7019_ids, .id_table = snd_sis7019_ids,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment