1 // SPDX-License-Identifier: GPL-2.0
5 * Copyright (C) 2012 Renesas Electronics Europe Ltd
6 * Copyright (C) 2012 Phil Edworthy
10 #include <linux/init.h>
11 #include <linux/ioport.h>
12 #include <linux/kernel.h>
15 static struct resource sh7269_pfc_resources
[] = {
19 .flags
= IORESOURCE_MEM
,
23 static int __init
plat_pinmux_setup(void)
25 return sh_pfc_register("pfc-sh7269", sh7269_pfc_resources
,
26 ARRAY_SIZE(sh7269_pfc_resources
));
28 arch_initcall(plat_pinmux_setup
);