diff options
-rw-r--r-- | drivers/usb/host/isp1760-if.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/usb/host/isp1760-if.c b/drivers/usb/host/isp1760-if.c index 051ef7b6bdc6..ad44bd60df98 100644 --- a/drivers/usb/host/isp1760-if.c +++ b/drivers/usb/host/isp1760-if.c | |||
@@ -232,9 +232,10 @@ static int __devinit isp1761_pci_probe(struct pci_dev *dev, | |||
232 | hcd = isp1760_register(pci_mem_phy0, length, dev->irq, | 232 | hcd = isp1760_register(pci_mem_phy0, length, dev->irq, |
233 | IRQF_SHARED | IRQF_DISABLED, &dev->dev, dev_name(&dev->dev), | 233 | IRQF_SHARED | IRQF_DISABLED, &dev->dev, dev_name(&dev->dev), |
234 | devflags); | 234 | devflags); |
235 | pci_set_drvdata(dev, hcd); | 235 | if (!IS_ERR(hcd)) { |
236 | if (!hcd) | 236 | pci_set_drvdata(dev, hcd); |
237 | return 0; | 237 | return 0; |
238 | } | ||
238 | clean: | 239 | clean: |
239 | status = -ENODEV; | 240 | status = -ENODEV; |
240 | iounmap(iobase); | 241 | iounmap(iobase); |