diff options
| author | Jens Axboe <axboe@suse.de> | 2005-05-06 10:37:44 +0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-06 19:07:01 +0400 |
| commit | b3214970abbe983cd89842ae24ea00e21bba79f6 (patch) | |
| tree | 7eb5599932c67e65141f51fa4fdc7b4dc5a8be6b | |
| parent | 6c80a21cb1825e576ffff9df2302bf0fa1065ceb (diff) | |
| download | linux-b3214970abbe983cd89842ae24ea00e21bba79f6.tar.xz | |
[PATCH] fix alsa via82xx resume
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.
Cc: <tiwai@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Jens Axboe <axboe@suse.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
| -rw-r--r-- | sound/pci/via82xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/via82xx.c b/sound/pci/via82xx.c index f1ce808501da..9b4d74d49f98 100644 --- a/sound/pci/via82xx.c +++ b/sound/pci/via82xx.c @@ -1836,7 +1836,7 @@ static void __devinit snd_via82xx_proc_init(via82xx_t *chip) * */ -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; |
