Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 452f236f authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

em28xx-alsa: Fix error patch for init/fini



If something bad happens during init, we free the card data.
However, we still keep it initialized, causing some dependent
code to be called at .fini.

Fix it.

Signed-off-by: default avatarMauro Carvalho Chehab <m.chehab@samsung.com>
parent b49eb2bd
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -948,6 +948,7 @@ urb_free:

card_free:
	snd_card_free(card);
	adev->sndcard = NULL;

	return err;
}
@@ -966,12 +967,12 @@ static int em28xx_audio_fini(struct em28xx *dev)

	em28xx_info("Closing audio extension");

	if (dev->adev.sndcard) {
		snd_card_disconnect(dev->adev.sndcard);
		flush_work(&dev->wq_trigger);

		em28xx_audio_free_urb(dev);

	if (dev->adev.sndcard) {
		snd_card_free(dev->adev.sndcard);
		dev->adev.sndcard = NULL;
	}