[PATCH] cciss: cleanup cciss_interrupt mode
A pretty simple cleanup for cciss_interrupt_mode. Signed-off-by: Mike Miller <mike.miller@hp.com> Cc: Jens Axboe <jens.axboe@oracle.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
799202cbd0
commit
1ecb9c0f3c
@@ -2788,23 +2788,21 @@ static void __devinit cciss_interrupt_mode(ctlr_info_t *c,
|
|||||||
if (err > 0) {
|
if (err > 0) {
|
||||||
printk(KERN_WARNING "cciss: only %d MSI-X vectors "
|
printk(KERN_WARNING "cciss: only %d MSI-X vectors "
|
||||||
"available\n", err);
|
"available\n", err);
|
||||||
|
goto default_int_mode;
|
||||||
} else {
|
} else {
|
||||||
printk(KERN_WARNING "cciss: MSI-X init failed %d\n",
|
printk(KERN_WARNING "cciss: MSI-X init failed %d\n",
|
||||||
err);
|
err);
|
||||||
|
goto default_int_mode;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (pci_find_capability(pdev, PCI_CAP_ID_MSI)) {
|
if (pci_find_capability(pdev, PCI_CAP_ID_MSI)) {
|
||||||
if (!pci_enable_msi(pdev)) {
|
if (!pci_enable_msi(pdev)) {
|
||||||
c->intr[SIMPLE_MODE_INT] = pdev->irq;
|
|
||||||
c->msi_vector = 1;
|
c->msi_vector = 1;
|
||||||
return;
|
|
||||||
} else {
|
} else {
|
||||||
printk(KERN_WARNING "cciss: MSI init failed\n");
|
printk(KERN_WARNING "cciss: MSI init failed\n");
|
||||||
c->intr[SIMPLE_MODE_INT] = pdev->irq;
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
default_int_mode:
|
default_int_mode:
|
||||||
#endif /* CONFIG_PCI_MSI */
|
#endif /* CONFIG_PCI_MSI */
|
||||||
/* if we get here we're going to use the default interrupt mode */
|
/* if we get here we're going to use the default interrupt mode */
|
||||||
c->intr[SIMPLE_MODE_INT] = pdev->irq;
|
c->intr[SIMPLE_MODE_INT] = pdev->irq;
|
||||||
|
Reference in New Issue
Block a user