]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[PARISC] Squelch pci_enable_device __must_check warning in superio
authorKyle McMartin <kyle@mcmartin.ca>
Thu, 18 Oct 2007 07:04:03 +0000 (00:04 -0700)
committerKyle McMartin <kyle@shortfin.cabal.ca>
Thu, 18 Oct 2007 08:07:44 +0000 (01:07 -0700)
If we have a SuckyIO, and pci_enable_device fails, we'll be in a world of
hurt anyways, so we might as well BUG_ON.

Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>
drivers/parisc/superio.c

index 38cdf9fa36a7b8f20e5f57976220e4b5101e21a3..1e8d2d17f04c63d921fe827402ded98252affa87 100644 (file)
@@ -155,6 +155,7 @@ superio_init(struct pci_dev *pcidev)
        struct superio_device *sio = &sio_dev;
        struct pci_dev *pdev = sio->lio_pdev;
        u16 word;
+       int ret;
 
        if (sio->suckyio_irq_enabled)
                return;
@@ -200,7 +201,8 @@ superio_init(struct pci_dev *pcidev)
        pci_write_config_word (pdev, PCI_COMMAND, word);
 
        pci_set_master (pdev);
-       pci_enable_device(pdev);
+       ret = pci_enable_device(pdev);
+       BUG_ON(ret < 0);        /* not too much we can do about this... */
 
        /*
         * Next project is programming the onboard interrupt controllers.