Hi,
Trying software suspend on my workstation makes it crash on resume. The
problem is that via82xx marks the chip_init function as _devinit, but
calls it on resume as well.
Signed-off-by: Jens Axboe <[email protected]>
Index: sound/pci/via82xx.c
===================================================================
--- 9771aaff44479c8ccac70fd18d1e7394fd9de264/sound/pci/via82xx.c (mode:100644 sha1:f1ce808501da54e60039fd5a9ab99af30d77a0c5)
+++ uncommitted/sound/pci/via82xx.c (mode:100644)
@@ -1836,7 +1836,7 @@
*
*/
-static int __devinit snd_via82xx_chip_init(via82xx_t *chip)
+static int snd_via82xx_chip_init(via82xx_t *chip)
{
unsigned int val;
int max_count;
--
Jens Axboe