diff options
author | Keerthy <j-keerthy@ti.com> | 2016-09-19 10:39:02 +0300 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2016-10-26 12:30:02 +0300 |
commit | 0aced355757ddc150f78a6bf4f8d885bd4eaf0e2 (patch) | |
tree | 2fdeaef6823af7af287d4484fae7230c18e986d1 /drivers/gpio/gpio-tps65218.c | |
parent | 1001354ca34179f3db924eb66672442a173147dc (diff) | |
download | linux-0aced355757ddc150f78a6bf4f8d885bd4eaf0e2.tar.xz |
mfd: tps65218: Remove redundant read wrapper
Currently read directly calls the repmap read function. Hence
remove the redundant wrapper and use regmap read wherever
needed.
Signed-off-by: Keerthy <j-keerthy@ti.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/gpio/gpio-tps65218.c')
-rw-r--r-- | drivers/gpio/gpio-tps65218.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-tps65218.c b/drivers/gpio/gpio-tps65218.c index d779307a9685..46e6dcc089cb 100644 --- a/drivers/gpio/gpio-tps65218.c +++ b/drivers/gpio/gpio-tps65218.c @@ -16,6 +16,7 @@ #include <linux/errno.h> #include <linux/gpio/driver.h> #include <linux/platform_device.h> +#include <linux/regmap.h> #include <linux/mfd/tps65218.h> struct tps65218_gpio { @@ -30,7 +31,7 @@ static int tps65218_gpio_get(struct gpio_chip *gc, unsigned offset) unsigned int val; int ret; - ret = tps65218_reg_read(tps65218, TPS65218_REG_ENABLE2, &val); + ret = regmap_read(tps65218->regmap, TPS65218_REG_ENABLE2, &val); if (ret) return ret; |