]> git.karo-electronics.de Git - karo-tx-linux.git/commit
clocksource/drivers/timer-of: Checking for IS_ERR() instead of NULL
authorDan Carpenter <dan.carpenter@oracle.com>
Mon, 10 Jul 2017 07:22:25 +0000 (10:22 +0300)
committerDaniel Lezcano <daniel.lezcano@linaro.org>
Fri, 11 Aug 2017 10:53:21 +0000 (12:53 +0200)
commit9e80dbd87286d3252ac2f78c6465c16e2ec8d476
tree284dc87f3c0a0043cc0626b4d177afca793b4130
parent5c23a558a65406cac472df07fd26a2688a42cad2
clocksource/drivers/timer-of: Checking for IS_ERR() instead of NULL

The current code checks the return value of the of_io_request_and_map()
function as it was returning a NULL pointer in case of error.

However, it returns an error code encoded in the pointer return value, not a
NULL value. Fix this by checking the returned pointer against IS_ERR() and
return the error with PTR_ERR().

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
drivers/clocksource/timer-of.c