diff options
author | Andreas Henriksson <andreas.henriksson@endian.se> | 2014-01-30 19:20:07 +0100 |
---|---|---|
committer | Andreas Bießmann <andreas.devel@googlemail.com> | 2014-03-09 18:24:54 +0100 |
commit | 3ed7c4875d1c50a6515ac3653b84f2f51e96fd03 (patch) | |
tree | 8e931df38dc434b70c7010e3755f6356bc7a4382 | |
parent | 81724e09a018cf002be1bbb1a89b4b25e5b6f5c4 (diff) | |
download | u-boot-imx-3ed7c4875d1c50a6515ac3653b84f2f51e96fd03.zip u-boot-imx-3ed7c4875d1c50a6515ac3653b84f2f51e96fd03.tar.gz u-boot-imx-3ed7c4875d1c50a6515ac3653b84f2f51e96fd03.tar.bz2 |
at91 gpio: fix typo in compatibility macro
It's called _pio_ in the version that was added to git.
Apparently it got renamed without updating the macros before it was
applied, c.f.
http://u-boot.10912.n7.nabble.com/U-Boot-PATCH-3-9-V3-add-a-new-AT91-GPIO-driver-td75922.html
Signed-off-by: Andreas Henriksson <andreas.henriksson@endian.se>
Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
-rw-r--r-- | arch/arm/include/asm/arch-at91/gpio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/include/asm/arch-at91/gpio.h b/arch/arm/include/asm/arch-at91/gpio.h index ff6142b..7121388 100644 --- a/arch/arm/include/asm/arch-at91/gpio.h +++ b/arch/arm/include/asm/arch-at91/gpio.h @@ -214,7 +214,7 @@ static inline unsigned pin_to_mask(unsigned pin) /* The following macros are need for backward compatibility */ #define at91_set_GPIO_periph(x, y) \ - at91_set_gpio_periph((x - PIN_BASE) / 32,(x % 32), y) + at91_set_pio_periph((x - PIN_BASE) / 32,(x % 32), y) #define at91_set_A_periph(x, y) \ at91_set_a_periph((x - PIN_BASE) / 32,(x % 32), y) #define at91_set_B_periph(x, y) \ |