Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 336821
b: refs/heads/master
c: 1631081
h: refs/heads/master
i:
  336819: eec1011
v: v3
  • Loading branch information
Axel Lin authored and Linus Walleij committed Nov 4, 2012
1 parent 991f7ee commit c567b04
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: 2cad6a8a4c31175578943f087e1dbef9f52e6ec3
refs/heads/master: 1631081993b1e6a6d668b3eb089904b88f0efc2b
6 changes: 3 additions & 3 deletions trunk/drivers/gpio/gpio-em.c
Original file line number Diff line number Diff line change
Expand Up @@ -302,8 +302,8 @@ static int __devinit em_gio_probe(struct platform_device *pdev)
p->irq_domain = irq_domain_add_linear(pdev->dev.of_node,
pdata->number_of_pins,
&em_gio_irq_domain_ops, p);
if (!p->irq_domain)
err = -ENXIO;
if (!p->irq_domain) {
ret = -ENXIO;
dev_err(&pdev->dev, "cannot initialize irq domain\n");
goto err3;
}
Expand Down Expand Up @@ -358,7 +358,7 @@ static int __devexit em_gio_remove(struct platform_device *pdev)

free_irq(irq[1]->start, pdev);
free_irq(irq[0]->start, pdev);
em_gio_irq_domain_cleanup(p);
irq_domain_remove(p->irq_domain);
iounmap(p->base1);
iounmap(p->base0);
kfree(p);
Expand Down

0 comments on commit c567b04

Please sign in to comment.