Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 376862
b: refs/heads/master
c: d94ea3f
h: refs/heads/master
v: v3
  • Loading branch information
Grant Likely committed Jun 8, 2013
1 parent 5b13d02 commit 93985d8
Show file tree
Hide file tree
Showing 3 changed files with 3 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: 94a63da0ac1a67bfb8b30aec1086523c5031ea5a
refs/heads/master: d94ea3f6d21e8b4398285516cc307c81d7374ec9
2 changes: 1 addition & 1 deletion trunk/drivers/irqchip/irq-versatile-fpga.c
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ static int fpga_irqdomain_map(struct irq_domain *d, unsigned int irq,

/* Skip invalid IRQs, only register handlers for the real ones */
if (!(f->valid & BIT(hwirq)))
return -ENOTSUPP;
return -EPERM;
irq_set_chip_data(irq, f);
irq_set_chip_and_handler(irq, &f->chip,
handle_level_irq);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/irqchip/irq-vic.c
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ static int vic_irqdomain_map(struct irq_domain *d, unsigned int irq,

/* Skip invalid IRQs, only register handlers for the real ones */
if (!(v->valid_sources & (1 << hwirq)))
return -ENOTSUPP;
return -EPERM;
irq_set_chip_and_handler(irq, &vic_chip, handle_level_irq);
irq_set_chip_data(irq, v->base);
set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
Expand Down

0 comments on commit 93985d8

Please sign in to comment.