From b045a23773f0b10071fb06e3364c7f21495f66b0 Mon Sep 17 00:00:00 2001 From: Nobuhiro Iwamatsu Date: Fri, 20 Jul 2012 09:29:19 +0900 Subject: arm: rmobile: Add support PFC of Renesas SH73A0 Renesas SH73A0 has GPIO based PFC. This privode framework of PFC. The code included in this base from linux kernel. Signed-off-by: Nobuhiro Iwamatsu Signed-off-by: Nobuhiro Iwamatsu --- arch/arm/include/asm/arch-rmobile/gpio.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 arch/arm/include/asm/arch-rmobile/gpio.h (limited to 'arch/arm/include') diff --git a/arch/arm/include/asm/arch-rmobile/gpio.h b/arch/arm/include/asm/arch-rmobile/gpio.h new file mode 100644 index 0000000000..8d3f10e913 --- /dev/null +++ b/arch/arm/include/asm/arch-rmobile/gpio.h @@ -0,0 +1,9 @@ +#ifndef __ASM_ARCH_GPIO_H +#define __ASM_ARCH_GPIO_H + +#if defined(CONFIG_SH73A0) +#include "sh73a0-gpio.h" +void sh73a0_pinmux_init(void); +#endif + +#endif /* __ASM_ARCH_GPIO_H */ -- cgit