Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 117775
b: refs/heads/master
c: ced1cba
h: refs/heads/master
i:
  117773: 9c8b5a9
  117771: 2fbc1b0
  117767: 88973d4
  117759: 4a083c3
v: v3
  • Loading branch information
roel kluin authored and Jeff Garzik committed Oct 22, 2008
1 parent bbf9697 commit 566fe09
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: d51894f4979e941a86309f29898579cbb591514e
refs/heads/master: ced1cbacc0557eda31ab59317c09f774cff865bb
6 changes: 3 additions & 3 deletions trunk/drivers/net/ax88796.c
Original file line number Diff line number Diff line change
Expand Up @@ -838,12 +838,12 @@ static int ax_probe(struct platform_device *pdev)

/* find the platform resources */

dev->irq = platform_get_irq(pdev, 0);
if (dev->irq < 0) {
ret = platform_get_irq(pdev, 0);
if (ret < 0) {
dev_err(&pdev->dev, "no IRQ specified\n");
ret = -ENXIO;
goto exit_mem;
}
dev->irq = ret;

res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
if (res == NULL) {
Expand Down

0 comments on commit 566fe09

Please sign in to comment.