regulator: da9063: Fix PTR_ERR/ERR_PTR mismatch
authorGeert Uytterhoeven <geert@linux-m68k.org>
Mon, 9 Sep 2013 11:49:26 +0000 (13:49 +0200)
committerMark Brown <broonie@linaro.org>
Tue, 10 Sep 2013 17:11:41 +0000 (18:11 +0100)
commite8cb204c675e05105ab2c93c73c57607e09d6b41
tree3482daeec75be32cfab73c011550f5dfe594f125
parenta584862221426f461f56674d30fe0d712ee63d00
regulator: da9063: Fix PTR_ERR/ERR_PTR mismatch

If CONFIG_OF=n:

drivers/regulator/da9063-regulator.c: In function ‘da9063_parse_regulators_dt’:
drivers/regulator/da9063-regulator.c:712: warning: passing argument 1 of ‘PTR_ERR’ makes pointer from integer without a cast
drivers/regulator/da9063-regulator.c:712: warning: return makes pointer from integer without a cast

Use ERR_PTR() to encode an error code in a pointer.
PTR_ERR() is meant to decode an error code from a pointer.

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Mark Brown <broonie@linaro.org>
drivers/regulator/da9063-regulator.c