diff options
| author | Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> | 2012-07-20 13:07:43 +0900 |
|---|---|---|
| committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-10-03 02:04:25 +0200 |
| commit | 62d0b6bab1d646b354ceecbce668d56f6dc33849 (patch) | |
| tree | bd664fe9bcfacc821c390ba52d334dd2c6392944 /arch/arm/include/asm/arch-rmobile/gpio.h | |
| parent | cfa291b7b829aaee27a94da300bc7c974e15abdf (diff) | |
| download | olio-uboot-2014.01-62d0b6bab1d646b354ceecbce668d56f6dc33849.tar.xz olio-uboot-2014.01-62d0b6bab1d646b354ceecbce668d56f6dc33849.zip | |
arm: rmobile: Add support PFC of Renesas R8A7740
Renesas R8A7740 has GPIO based PFC. This privode framework of PFC.
The code included in this base from linux kernel.
Signed-off-by: Hideyuki Sano <hideyuki.sano.dn@renesas.com>
Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Diffstat (limited to 'arch/arm/include/asm/arch-rmobile/gpio.h')
| -rw-r--r-- | arch/arm/include/asm/arch-rmobile/gpio.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/include/asm/arch-rmobile/gpio.h b/arch/arm/include/asm/arch-rmobile/gpio.h index 8d3f10e91..6b5e4ed4e 100644 --- a/arch/arm/include/asm/arch-rmobile/gpio.h +++ b/arch/arm/include/asm/arch-rmobile/gpio.h @@ -4,6 +4,9 @@ #if defined(CONFIG_SH73A0) #include "sh73a0-gpio.h" void sh73a0_pinmux_init(void); +#elif defined(CONFIG_R8A7740) +#include "r8a7740-gpio.h" +void r8a7740_pinmux_init(void); #endif #endif /* __ASM_ARCH_GPIO_H */ |