Commit b47fe22d authored by Rob Herring's avatar Rob Herring

of/irq: use of_property_read_u32_index to parse interrupts property

Convert the interrupts property parsing to use the OF property API
instead of open coding the parsing of the raw property value. This saves
a number of LoC, and the result is easier to read.
Signed-off-by: default avatarRob Herring <robh@kernel.org>
parent bc575064
...@@ -292,8 +292,8 @@ EXPORT_SYMBOL_GPL(of_irq_parse_raw); ...@@ -292,8 +292,8 @@ EXPORT_SYMBOL_GPL(of_irq_parse_raw);
int of_irq_parse_one(struct device_node *device, int index, struct of_phandle_args *out_irq) int of_irq_parse_one(struct device_node *device, int index, struct of_phandle_args *out_irq)
{ {
struct device_node *p; struct device_node *p;
const __be32 *intspec, *addr; const __be32 *addr;
u32 intsize, intlen; u32 intsize;
int i, res; int i, res;
pr_debug("of_irq_parse_one: dev=%pOF, index=%d\n", device, index); pr_debug("of_irq_parse_one: dev=%pOF, index=%d\n", device, index);
...@@ -311,15 +311,6 @@ int of_irq_parse_one(struct device_node *device, int index, struct of_phandle_ar ...@@ -311,15 +311,6 @@ int of_irq_parse_one(struct device_node *device, int index, struct of_phandle_ar
if (!res) if (!res)
return of_irq_parse_raw(addr, out_irq); return of_irq_parse_raw(addr, out_irq);
/* Get the interrupts property */
intspec = of_get_property(device, "interrupts", &intlen);
if (intspec == NULL)
return -EINVAL;
intlen /= sizeof(*intspec);
pr_debug(" intspec=%d intlen=%d\n", be32_to_cpup(intspec), intlen);
/* Look for the interrupt parent. */ /* Look for the interrupt parent. */
p = of_irq_find_parent(device); p = of_irq_find_parent(device);
if (p == NULL) if (p == NULL)
...@@ -331,20 +322,21 @@ int of_irq_parse_one(struct device_node *device, int index, struct of_phandle_ar ...@@ -331,20 +322,21 @@ int of_irq_parse_one(struct device_node *device, int index, struct of_phandle_ar
goto out; goto out;
} }
pr_debug(" intsize=%d intlen=%d\n", intsize, intlen); pr_debug(" parent=%pOF, intsize=%d\n", p, intsize);
/* Check index */
if ((index + 1) * intsize > intlen) {
res = -EINVAL;
goto out;
}
/* Copy intspec into irq structure */ /* Copy intspec into irq structure */
intspec += index * intsize;
out_irq->np = p; out_irq->np = p;
out_irq->args_count = intsize; out_irq->args_count = intsize;
for (i = 0; i < intsize; i++) for (i = 0; i < intsize; i++) {
out_irq->args[i] = be32_to_cpup(intspec++); res = of_property_read_u32_index(device, "interrupts",
(index * intsize) + i,
out_irq->args + i);
if (res)
goto out;
}
pr_debug(" intspec=%d\n", *out_irq->args);
/* Check if there are any interrupt-map translations to process */ /* Check if there are any interrupt-map translations to process */
res = of_irq_parse_raw(addr, out_irq); res = of_irq_parse_raw(addr, out_irq);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment