]> git.karo-electronics.de Git - karo-tx-linux.git/commit
irqchip/mbigen: Fix return value check in mbigen_device_probe()
authorWei Yongjun <weiyongjun1@huawei.com>
Thu, 27 Apr 2017 15:21:13 +0000 (15:21 +0000)
committerThomas Gleixner <tglx@linutronix.de>
Sun, 30 Apr 2017 09:21:16 +0000 (11:21 +0200)
commit216646e4d82e847791f0ba66c439dedd36cb119f
tree18ebe0f5c2cc5e2cda60951066adbddeae67c6b2
parent8ada00a650ec7ec639fb72964f0e4eba928786f8
irqchip/mbigen: Fix return value check in mbigen_device_probe()

In case of error, the function devm_ioremap() returns NULL pointer
not ERR_PTR(). Use devm_ioremap_resource() instead of devm_ioremap()
to fix the IS_ERR() test issue.

Fixes: 76e1f77f9c26 ("irqchip/mbigen: Introduce mbigen_of_create_domain()")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Cc: Marc Zyngier <marc.zyngier@arm.com>
Cc: Kefeng Wang <wangkefeng.wang@huawei.com>
Cc: Jason Cooper <jason@lakedaemon.net>
Link: http://lkml.kernel.org/r/20170427152113.31147-1-weiyj.lk@gmail.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
drivers/irqchip/irq-mbigen.c