]> asedeno.scripts.mit.edu Git - linux.git/commit
greybus: use PTR_ERR_OR_ZERO()
authorAlex Elder <elder@linaro.org>
Tue, 24 May 2016 18:34:51 +0000 (13:34 -0500)
committerGreg Kroah-Hartman <gregkh@google.com>
Fri, 27 May 2016 18:28:16 +0000 (11:28 -0700)
commit95073cc2e53c1352f2c244408d1bd005b07650fd
treefd54de6f0354c10278974f684bca42da78808009
parentd97fca12e92d3179554baf4db42611e5fe56aeed
greybus: use PTR_ERR_OR_ZERO()

Coccinelle points out that the macro PTR_ERR_OR_ZERO() handles the
frequent case of converting a pointer into either error code (if its
value is an encoded error value) or 0 (otherwise).  Switch some code
in gb_power_supply_register() to use that macro.  I have verified
this is true of the kernel we're now working with (arche-6.0).

Signed-off-by: Alex Elder <elder@linaro.org>
Reviewed-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
drivers/staging/greybus/power_supply.c