diff --git a/[refs] b/[refs] index 870c209ffc91..c80361c35f8f 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 4d8ce1c9966663bad69e738952179f3cc52710bf +refs/heads/master: ae970eb45d8a1ea4506be23c3f776225b9575d0e diff --git a/trunk/sound/pci/sis7019.c b/trunk/sound/pci/sis7019.c index 512434efcc31..805ab6e9a78f 100644 --- a/trunk/sound/pci/sis7019.c +++ b/trunk/sound/pci/sis7019.c @@ -1377,8 +1377,9 @@ static int __devinit sis_chip_create(struct snd_card *card, if (rc) goto error_out_cleanup; - if (request_irq(pci->irq, sis_interrupt, IRQF_SHARED, KBUILD_MODNAME, - sis)) { + rc = request_irq(pci->irq, sis_interrupt, IRQF_SHARED, KBUILD_MODNAME, + sis); + if (rc) { dev_err(&pci->dev, "unable to allocate irq %d\n", sis->irq); goto error_out_cleanup; }