1 // SPDX-License-Identifier: GPL-2.0
5 * Copyright (C) 2009 Renesas Solutions Corp.
7 * Kuninori Morimoto <morimoto.kuninori@renesas.com>
9 * Based on SH7723 Pinmux
10 * Copyright (C) 2008 Magnus Damm
13 #include <linux/bug.h>
14 #include <linux/init.h>
15 #include <linux/kernel.h>
16 #include <linux/ioport.h>
19 static struct resource sh7724_pfc_resources
[] = {
23 .flags
= IORESOURCE_MEM
,
27 static int __init
plat_pinmux_setup(void)
29 return sh_pfc_register("pfc-sh7724", sh7724_pfc_resources
,
30 ARRAY_SIZE(sh7724_pfc_resources
));
32 arch_initcall(plat_pinmux_setup
);