diff options
author | Hans de Goede <hdegoede@redhat.com> | 2015-10-03 15:18:33 +0200 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2015-10-20 18:40:27 +0200 |
commit | 6944aff1ca91e8cf2c373193982cbb0417b4d4cc (patch) | |
tree | 02549285ee6718f207188a977ac197a1cf5ac7c8 /drivers/gpio | |
parent | 401175220d169ba2bfe7fbb50d73ccc9c1d6a635 (diff) | |
download | u-boot-imx-6944aff1ca91e8cf2c373193982cbb0417b4d4cc.zip u-boot-imx-6944aff1ca91e8cf2c373193982cbb0417b4d4cc.tar.gz u-boot-imx-6944aff1ca91e8cf2c373193982cbb0417b4d4cc.tar.bz2 |
sunxi: power: Unify axp pmic function names
Stop prefixing the axp functions for setting voltages, etc. with the
model number, there ever is only one pmic driver built into u-boot,
this allows simplifying the callers.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Acked-by: Ian Campbell <ijc@hellion.org.uk>
Diffstat (limited to 'drivers/gpio')
-rw-r--r-- | drivers/gpio/axp_gpio.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/drivers/gpio/axp_gpio.c b/drivers/gpio/axp_gpio.c index 2e97cc3..bd2ac89 100644 --- a/drivers/gpio/axp_gpio.c +++ b/drivers/gpio/axp_gpio.c @@ -10,22 +10,13 @@ #include <asm/arch/gpio.h> #include <asm/arch/pmic_bus.h> #include <asm/gpio.h> +#include <axp_pmic.h> #include <dm.h> #include <dm/device-internal.h> #include <dm/lists.h> #include <dm/root.h> #include <errno.h> -#ifdef CONFIG_AXP152_POWER -#include <axp152.h> -#elif defined CONFIG_AXP209_POWER -#include <axp209.h> -#elif defined CONFIG_AXP221_POWER -#include <axp221.h> -#else -#error Unknown AXP model -#endif - static int axp_gpio_set_value(struct udevice *dev, unsigned pin, int val); static u8 axp_get_gpio_ctrl_reg(unsigned pin) |