From: Wei Yongjun Date: Thu, 21 Nov 2013 03:38:44 +0000 (-0300) Subject: [media] cx88: use correct pci drvdata type in cx88_audio_finidev() X-Git-Tag: Ubuntu-5.10.0-12.13~17474^2~369 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=cd86e3b535eea2e2685f65f4318a8b13e62b11c3;p=mirror_ubuntu-hirsute-kernel.git [media] cx88: use correct pci drvdata type in cx88_audio_finidev() We had set the pci drvdata in cx88_audio_initdev() as a type of struct snd_card, so cx88_audio_finidev() should used it as the same type too. Signed-off-by: Wei Yongjun Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/pci/cx88/cx88-alsa.c b/drivers/media/pci/cx88/cx88-alsa.c index 400eb1c42d3f..d014206e7176 100644 --- a/drivers/media/pci/cx88/cx88-alsa.c +++ b/drivers/media/pci/cx88/cx88-alsa.c @@ -931,9 +931,9 @@ error: */ static void cx88_audio_finidev(struct pci_dev *pci) { - struct cx88_audio_dev *card = pci_get_drvdata(pci); + struct snd_card *card = pci_get_drvdata(pci); - snd_card_free((void *)card); + snd_card_free(card); devno--; }