diff options
Diffstat (limited to 'sound/pci/via82xx.c')
-rw-r--r-- | sound/pci/via82xx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/pci/via82xx.c b/sound/pci/via82xx.c index fc62d6380f86..8dbffe6a4af2 100644 --- a/sound/pci/via82xx.c +++ b/sound/pci/via82xx.c | |||
@@ -2436,9 +2436,9 @@ static int __devinit snd_via82xx_probe(struct pci_dev *pci, | |||
2436 | unsigned int i; | 2436 | unsigned int i; |
2437 | int err; | 2437 | int err; |
2438 | 2438 | ||
2439 | card = snd_card_new(index, id, THIS_MODULE, 0); | 2439 | err = snd_card_create(index, id, THIS_MODULE, 0, &card); |
2440 | if (card == NULL) | 2440 | if (err < 0) |
2441 | return -ENOMEM; | 2441 | return err; |
2442 | 2442 | ||
2443 | card_type = pci_id->driver_data; | 2443 | card_type = pci_id->driver_data; |
2444 | switch (card_type) { | 2444 | switch (card_type) { |