2 * SH7734 processor support - PFC hardware block
4 * Copyright (C) 2012 Renesas Solutions Corp.
5 * Copyright (C) 2012 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
7 * This file is subject to the terms and conditions of the GNU General Public
8 * License. See the file "COPYING" in the main directory of this archive
11 #include <linux/bug.h>
12 #include <linux/init.h>
13 #include <linux/kernel.h>
14 #include <linux/ioport.h>
17 static struct resource sh7734_pfc_resources
[] = {
21 .flags
= IORESOURCE_MEM
,
26 .flags
= IORESOURCE_MEM
,
30 static int __init
plat_pinmux_setup(void)
32 return sh_pfc_register("pfc-sh7734", sh7734_pfc_resources
,
33 ARRAY_SIZE(sh7734_pfc_resources
));
35 arch_initcall(plat_pinmux_setup
);