提交 66a91e9c 编写于 作者: A Andy Fleming 提交者: Paul Mackerras

[PATCH] of_irq_to_resource now returns the virq

Mostly this is to allow for error checking (check the return for NO_IRQ)
Added a check that the resource is non-NULL, too.
Signed-off-by: NAndrew Fleming <afleming@freescale.com>
Acked-by: NBenjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: NPaul Mackerras <paulus@samba.org>
上级 a9b14973
......@@ -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;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册