diff options
-rw-r--r-- | drivers/tty/serial/icom.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/tty/serial/icom.c b/drivers/tty/serial/icom.c index d4620fe5da2e..45fc323b95e6 100644 --- a/drivers/tty/serial/icom.c +++ b/drivers/tty/serial/icom.c | |||
@@ -1550,8 +1550,10 @@ static int icom_probe(struct pci_dev *dev, | |||
1550 | 1550 | ||
1551 | icom_adapter->base_addr = pci_ioremap_bar(dev, 0); | 1551 | icom_adapter->base_addr = pci_ioremap_bar(dev, 0); |
1552 | 1552 | ||
1553 | if (!icom_adapter->base_addr) | 1553 | if (!icom_adapter->base_addr) { |
1554 | retval = -ENOMEM; | ||
1554 | goto probe_exit1; | 1555 | goto probe_exit1; |
1556 | } | ||
1555 | 1557 | ||
1556 | /* save off irq and request irq line */ | 1558 | /* save off irq and request irq line */ |
1557 | if ( (retval = request_irq(dev->irq, icom_interrupt, | 1559 | if ( (retval = request_irq(dev->irq, icom_interrupt, |