Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 42200
b: refs/heads/master
c: 66a91e9
h: refs/heads/master
v: v3
  • Loading branch information
Andy Fleming authored and Paul Mackerras committed Nov 13, 2006
1 parent 59e309d commit 068557e
Show file tree
Hide file tree
Showing 2 changed files with 12 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: a9b14973a8c42b2aecc968851372203c6567e196
refs/heads/master: 66a91e9c0ab62ea938afaba7352741d8c554a589
14 changes: 11 additions & 3 deletions trunk/include/asm-powerpc/prom.h
Original file line number Diff line number Diff line change
Expand Up @@ -332,10 +332,18 @@ extern int of_irq_map_one(struct device_node *device, int index,
struct pci_dev;
extern int of_irq_map_pci(struct pci_dev *pdev, struct of_irq *out_irq);

static inline void of_irq_to_resource(struct device_node *dev, int index, struct resource *r)
static inline int of_irq_to_resource(struct device_node *dev, int index, struct resource *r)
{
r->start = r->end = irq_of_parse_and_map(dev, index);
r->flags = IORESOURCE_IRQ;
int irq = irq_of_parse_and_map(dev, index);

/* Only dereference the resource if both the
* resource and the irq are valid. */
if (r && irq != NO_IRQ) {
r->start = r->end = irq;
r->flags = IORESOURCE_IRQ;
}

return irq;
}


Expand Down

0 comments on commit 068557e

Please sign in to comment.