Commit-ID: 99e37d0ea607623f286b4841cc355e65b297170c Gitweb: http://git.kernel.org/tip/99e37d0ea607623f286b4841cc355e65b297170c Author: Sricharan R <r.sricharan@xxxxxx> AuthorDate: Thu, 26 Jun 2014 12:40:29 +0530 Committer: Jason Cooper <jason@xxxxxxxxxxxxxx> CommitDate: Mon, 30 Jun 2014 19:11:25 +0000 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@xxxxxx> Acked-by: Santosh Shilimkar <santosh.shilimkar@xxxxxx> Link: https://lkml.kernel.org/r/1403766634-18543-12-git-send-email-r.sricharan@xxxxxx Signed-off-by: Jason Cooper <jason@xxxxxxxxxxxxxx> --- drivers/irqchip/irq-crossbar.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/irqchip/irq-crossbar.c b/drivers/irqchip/irq-crossbar.c index afc35fd..a8c6156 100644 --- a/drivers/irqchip/irq-crossbar.c +++ b/drivers/irqchip/irq-crossbar.c @@ -250,6 +250,8 @@ err_base: iounmap(cb->crossbar_base); err_cb: kfree(cb); + + cb = NULL; return ret; } -- To unsubscribe from this list: send the line "unsubscribe linux-tip-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html