aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/irqchip
diff options
context:
space:
mode:
authorNishanth Menon <nm@ti.com>2014-06-26 03:10:27 -0400
committerJason Cooper <jason@lakedaemon.net>2014-06-30 15:11:24 -0400
commitedb442def98c3c64acc316b6b1a64791c138ab07 (patch)
tree34bdb1a3584dd9cb56cb69e477a90e805a69a76f /drivers/irqchip
parente30ef8abb383903f2b7e1bced971b98fd30cafc3 (diff)
irqchip: crossbar: Return proper error value
crossbar_of_init always returns -ENOMEM in case of errors. There can be other causes of failure like invalid data from DT. So return a appropriate error value for that case. Signed-off-by: Nishanth Menon <nm@ti.com> Signed-off-by: Sricharan R <r.sricharan@ti.com> Acked-by: Santosh Shilimkar <santosh.shilimkar@ti.com> Link: https://lkml.kernel.org/r/1403766634-18543-10-git-send-email-r.sricharan@ti.com Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Diffstat (limited to 'drivers/irqchip')
-rw-r--r--drivers/irqchip/irq-crossbar.c14
1 files changed, 11 insertions, 3 deletions
diff --git a/drivers/irqchip/irq-crossbar.c b/drivers/irqchip/irq-crossbar.c
index cee556bf603c..10d723dfa348 100644
--- a/drivers/irqchip/irq-crossbar.c
+++ b/drivers/irqchip/irq-crossbar.c
@@ -129,19 +129,25 @@ static const struct irq_domain_ops routable_irq_domain_ops = {
129 129
130static int __init crossbar_of_init(struct device_node *node) 130static int __init crossbar_of_init(struct device_node *node)
131{ 131{
132 int i, size, max, reserved = 0, entry; 132 int i, size, max = 0, reserved = 0, entry;
133 const __be32 *irqsr; 133 const __be32 *irqsr;
134 int ret = -ENOMEM;
134 135
135 cb = kzalloc(sizeof(*cb), GFP_KERNEL); 136 cb = kzalloc(sizeof(*cb), GFP_KERNEL);
136 137
137 if (!cb) 138 if (!cb)
138 return -ENOMEM; 139 return ret;
139 140
140 cb->crossbar_base = of_iomap(node, 0); 141 cb->crossbar_base = of_iomap(node, 0);
141 if (!cb->crossbar_base) 142 if (!cb->crossbar_base)
142 goto err1; 143 goto err1;
143 144
144 of_property_read_u32(node, "ti,max-irqs", &max); 145 of_property_read_u32(node, "ti,max-irqs", &max);
146 if (!max) {
147 pr_err("missing 'ti,max-irqs' property\n");
148 ret = -EINVAL;
149 goto err2;
150 }
145 cb->irq_map = kcalloc(max, sizeof(int), GFP_KERNEL); 151 cb->irq_map = kcalloc(max, sizeof(int), GFP_KERNEL);
146 if (!cb->irq_map) 152 if (!cb->irq_map)
147 goto err2; 153 goto err2;
@@ -162,6 +168,7 @@ static int __init crossbar_of_init(struct device_node *node)
162 i, &entry); 168 i, &entry);
163 if (entry > max) { 169 if (entry > max) {
164 pr_err("Invalid reserved entry\n"); 170 pr_err("Invalid reserved entry\n");
171 ret = -EINVAL;
165 goto err3; 172 goto err3;
166 } 173 }
167 cb->irq_map[entry] = IRQ_RESERVED; 174 cb->irq_map[entry] = IRQ_RESERVED;
@@ -205,6 +212,7 @@ static int __init crossbar_of_init(struct device_node *node)
205 break; 212 break;
206 default: 213 default:
207 pr_err("Invalid reg-size property\n"); 214 pr_err("Invalid reg-size property\n");
215 ret = -EINVAL;
208 goto err4; 216 goto err4;
209 break; 217 break;
210 } 218 }
@@ -243,7 +251,7 @@ err2:
243 iounmap(cb->crossbar_base); 251 iounmap(cb->crossbar_base);
244err1: 252err1:
245 kfree(cb); 253 kfree(cb);
246 return -ENOMEM; 254 return ret;
247} 255}
248 256
249static const struct of_device_id crossbar_match[] __initconst = { 257static const struct of_device_id crossbar_match[] __initconst = {