Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 115786
b: refs/heads/master
c: ce5dee5
h: refs/heads/master
v: v3
  • Loading branch information
Julien Brunel authored and Greg Kroah-Hartman committed Oct 17, 2008
1 parent 20620da commit ee808bc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f0d781d59cb621e1795d510039df973d0f8b23fc
refs/heads/master: ce5dee50edc8b1ac8028c17040d40a78c4b33232
5 changes: 3 additions & 2 deletions trunk/drivers/usb/host/isp1760-if.c
Original file line number Diff line number Diff line change
Expand Up @@ -232,9 +232,10 @@ static int __devinit isp1761_pci_probe(struct pci_dev *dev,
hcd = isp1760_register(pci_mem_phy0, length, dev->irq,
IRQF_SHARED | IRQF_DISABLED, &dev->dev, dev_name(&dev->dev),
devflags);
pci_set_drvdata(dev, hcd);
if (!hcd)
if (!IS_ERR(hcd)) {
pci_set_drvdata(dev, hcd);
return 0;
}
clean:
status = -ENODEV;
iounmap(iobase);
Expand Down

0 comments on commit ee808bc

Please sign in to comment.