Re: [PATCH -next] bus: arm-integrator-lm: Fix return value check in integrator_ap_lm_probe()

2020-05-25 Thread Linus Walleij
Hi Wei, On Wed, May 20, 2020 at 5:18 AM Wei Yongjun wrote: > In case of error, the function of_find_matching_node() returns NULL > pointer not ERR_PTR(). The IS_ERR() test in the return value check > should be replaced with NULL test. > > Fixes: ccea5e8a5918 ("bus: Add driver for Integrator/AP

[PATCH -next] bus: arm-integrator-lm: Fix return value check in integrator_ap_lm_probe()

2020-05-19 Thread Wei Yongjun
In case of error, the function of_find_matching_node() returns NULL pointer not ERR_PTR(). The IS_ERR() test in the return value check should be replaced with NULL test. Fixes: ccea5e8a5918 ("bus: Add driver for Integrator/AP logic modules") Reported-by: Hulk Robot Signed-off-by: Wei Yongjun