diff options
Diffstat (limited to 'sound/isa/sgalaxy.c')
| -rw-r--r-- | sound/isa/sgalaxy.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/isa/sgalaxy.c b/sound/isa/sgalaxy.c index 2c7503bf127..6fe27b9d944 100644 --- a/sound/isa/sgalaxy.c +++ b/sound/isa/sgalaxy.c @@ -243,9 +243,9 @@ static int __devinit snd_sgalaxy_probe(struct device *devptr, unsigned int dev)  	struct snd_card *card;  	struct snd_wss *chip; -	card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0); -	if (card == NULL) -		return -ENOMEM; +	err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card); +	if (err < 0) +		return err;  	xirq = irq[dev];  	if (xirq == SNDRV_AUTO_IRQ) {  |