1 // SPDX-License-Identifier: GPL-2.0
5 * Copyright (C) 2012 Renesas Electronics Europe Ltd
9 #include <linux/init.h>
10 #include <linux/kernel.h>
11 #include <linux/ioport.h>
14 static struct resource sh7264_pfc_resources
[] = {
18 .flags
= IORESOURCE_MEM
,
22 static int __init
plat_pinmux_setup(void)
24 return sh_pfc_register("pfc-sh7264", sh7264_pfc_resources
,
25 ARRAY_SIZE(sh7264_pfc_resources
));
27 arch_initcall(plat_pinmux_setup
);