aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSricharan R <r.sricharan@ti.com>2014-06-26 03:10:29 -0400
committerJason Cooper <jason@lakedaemon.net>2014-06-30 15:11:25 -0400
commit99e37d0ea607623f286b4841cc355e65b297170c (patch)
tree08d54361cdbc0dc9c4f3875807169bb72758883c
parent3c44d5151246947442f2fe8eede842e3f76dd2f1 (diff)
irqchip: crossbar: Set cb pointer to null in case of error
If crossbar_of_init returns with a error, then set the cb pointer to null. 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-12-git-send-email-r.sricharan@ti.com Signed-off-by: Jason Cooper <jason@lakedaemon.net>
-rw-r--r--drivers/irqchip/irq-crossbar.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/irqchip/irq-crossbar.c b/drivers/irqchip/irq-crossbar.c
index afc35fd1d9aa..a8c615692803 100644
--- a/drivers/irqchip/irq-crossbar.c
+++ b/drivers/irqchip/irq-crossbar.c
@@ -250,6 +250,8 @@ err_base:
250 iounmap(cb->crossbar_base); 250 iounmap(cb->crossbar_base);
251err_cb: 251err_cb:
252 kfree(cb); 252 kfree(cb);
253
254 cb = NULL;
253 return ret; 255 return ret;
254} 256}
255 257