aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/pcmcia/pd6729.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/pcmcia/pd6729.c b/drivers/pcmcia/pd6729.c
index b29d97e170ae..a4c16ee5c718 100644
--- a/drivers/pcmcia/pd6729.c
+++ b/drivers/pcmcia/pd6729.c
@@ -644,6 +644,7 @@ static int pd6729_pci_probe(struct pci_dev *dev,
644 if (!pci_resource_start(dev, 0)) { 644 if (!pci_resource_start(dev, 0)) {
645 dev_warn(&dev->dev, "refusing to load the driver as the " 645 dev_warn(&dev->dev, "refusing to load the driver as the "
646 "io_base is NULL.\n"); 646 "io_base is NULL.\n");
647 ret = -ENOMEM;
647 goto err_out_disable; 648 goto err_out_disable;
648 } 649 }
649 650
@@ -673,6 +674,7 @@ static int pd6729_pci_probe(struct pci_dev *dev,
673 mask = pd6729_isa_scan(); 674 mask = pd6729_isa_scan();
674 if (irq_mode == 0 && mask == 0) { 675 if (irq_mode == 0 && mask == 0) {
675 dev_warn(&dev->dev, "no ISA interrupt is available.\n"); 676 dev_warn(&dev->dev, "no ISA interrupt is available.\n");
677 ret = -ENODEV;
676 goto err_out_free_res; 678 goto err_out_free_res;
677 } 679 }
678 680