mirror of https://gitee.com/openkylin/linux.git
microblaze: intc: Refactor DT sanity check
Avoid funky casts and arithmetic. Signed-off-by: Soren Brinkmann <soren.brinkmann@xilinx.com> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
parent
2c80a072a6
commit
d50466c907
|
@ -157,7 +157,7 @@ static int __init xilinx_intc_of_init(struct device_node *intc,
|
|||
return ret;
|
||||
}
|
||||
|
||||
if (intr_mask > (u32)((1ULL << nr_irq) - 1))
|
||||
if (intr_mask >> nr_irq)
|
||||
pr_info(" ERROR: Mismatch in kind-of-intr param\n");
|
||||
|
||||
pr_info("%s: num_irq=%d, edge=0x%x\n",
|
||||
|
|
Loading…
Reference in New Issue