summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Hofstee <jeroen@myspectrum.nl>2014-10-08 22:58:03 +0200
committerTom Rini <trini@ti.com>2014-10-25 15:27:36 -0400
commit5b5ac64560816ef9b731f8d66780ea959c8ee966 (patch)
tree5090315e1d8f0f2df7240d606d2816888ec2b7a4
parentd50b07df2864561cc8043ab39fe7b62a912fc0a5 (diff)
downloadu-boot-imx-5b5ac64560816ef9b731f8d66780ea959c8ee966.zip
u-boot-imx-5b5ac64560816ef9b731f8d66780ea959c8ee966.tar.gz
u-boot-imx-5b5ac64560816ef9b731f8d66780ea959c8ee966.tar.bz2
gpio: add protype for name_to_gpio
Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl>
-rw-r--r--common/cmd_gpio.c2
-rw-r--r--include/asm-generic/gpio.h2
2 files changed, 3 insertions, 1 deletions
diff --git a/common/cmd_gpio.c b/common/cmd_gpio.c
index 11f4e40..8d946f4 100644
--- a/common/cmd_gpio.c
+++ b/common/cmd_gpio.c
@@ -12,7 +12,7 @@
#include <dm.h>
#include <asm/gpio.h>
-int __weak name_to_gpio(const char *name)
+__weak int name_to_gpio(const char *name)
{
return simple_strtoul(name, NULL, 10);
}
diff --git a/include/asm-generic/gpio.h b/include/asm-generic/gpio.h
index 1ebb9c7..347805e 100644
--- a/include/asm-generic/gpio.h
+++ b/include/asm-generic/gpio.h
@@ -193,4 +193,6 @@ const char *gpio_get_bank_info(struct udevice *dev, int *offset_count);
int gpio_lookup_name(const char *name, struct udevice **devp,
unsigned int *offsetp, unsigned int *gpiop);
+int name_to_gpio(const char *name);
+
#endif /* _ASM_GENERIC_GPIO_H_ */