diff options
author | Simon Glass <sjg@chromium.org> | 2015-01-05 20:05:37 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-01-29 17:09:52 -0700 |
commit | 9762a415c8ed1d2e7cb7d202a29a3c2133184808 (patch) | |
tree | 9836940eae028d4265930cf490ec27fbfdbe42ec /arch | |
parent | b0265d56fe24a757638a2a0ca76ec1400f43d348 (diff) | |
download | u-boot-imx-9762a415c8ed1d2e7cb7d202a29a3c2133184808.zip u-boot-imx-9762a415c8ed1d2e7cb7d202a29a3c2133184808.tar.gz u-boot-imx-9762a415c8ed1d2e7cb7d202a29a3c2133184808.tar.bz2 |
dm: zynq: Remove inline gpio functions
These functions serve no useful purpose, and conflict with the generic API.
Drop them.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/include/asm/arch-zynq/gpio.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/arch/arm/include/asm/arch-zynq/gpio.h b/arch/arm/include/asm/arch-zynq/gpio.h index 2dbba75..a26ae87 100644 --- a/arch/arm/include/asm/arch-zynq/gpio.h +++ b/arch/arm/include/asm/arch-zynq/gpio.h @@ -7,19 +7,4 @@ #ifndef _ZYNQ_GPIO_H #define _ZYNQ_GPIO_H -inline int gpio_get_value(unsigned gpio) -{ - return 0; -} - -inline int gpio_set_value(unsigned gpio, int val) -{ - return 0; -} - -inline int gpio_request(unsigned gpio, const char *label) -{ - return 0; -} - #endif /* _ZYNQ_GPIO_H */ |