1 // SPDX-License-Identifier: GPL-2.0
3 #include <linux/init.h>
4 #include <linux/kernel.h>
5 #include <linux/ioport.h>
8 static struct resource sh7722_pfc_resources
[] = {
12 .flags
= IORESOURCE_MEM
,
16 static int __init
plat_pinmux_setup(void)
18 return sh_pfc_register("pfc-sh7722", sh7722_pfc_resources
,
19 ARRAY_SIZE(sh7722_pfc_resources
));
21 arch_initcall(plat_pinmux_setup
);