aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/microblaze/kernel/intc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/microblaze/kernel/intc.c b/arch/microblaze/kernel/intc.c
index 15c7c12ea0e7..01ae73088578 100644
--- a/arch/microblaze/kernel/intc.c
+++ b/arch/microblaze/kernel/intc.c
@@ -148,13 +148,13 @@ static int __init xilinx_intc_of_init(struct device_node *intc,
148 ret = of_property_read_u32(intc, "xlnx,num-intr-inputs", &nr_irq); 148 ret = of_property_read_u32(intc, "xlnx,num-intr-inputs", &nr_irq);
149 if (ret < 0) { 149 if (ret < 0) {
150 pr_err("%s: unable to read xlnx,num-intr-inputs\n", __func__); 150 pr_err("%s: unable to read xlnx,num-intr-inputs\n", __func__);
151 return -EINVAL; 151 return ret;
152 } 152 }
153 153
154 ret = of_property_read_u32(intc, "xlnx,kind-of-intr", &intr_mask); 154 ret = of_property_read_u32(intc, "xlnx,kind-of-intr", &intr_mask);
155 if (ret < 0) { 155 if (ret < 0) {
156 pr_err("%s: unable to read xlnx,kind-of-intr\n", __func__); 156 pr_err("%s: unable to read xlnx,kind-of-intr\n", __func__);
157 return -EINVAL; 157 return ret;
158 } 158 }
159 159
160 if (intr_mask > (u32)((1ULL << nr_irq) - 1)) 160 if (intr_mask > (u32)((1ULL << nr_irq) - 1))