1 // SPDX-License-Identifier: GPL-2.0
3 * SH-X3 prototype CPU pinmux
5 * Copyright (C) 2010 Paul Mundt
8 #include <linux/init.h>
9 #include <linux/kernel.h>
10 #include <linux/ioport.h>
13 static struct resource shx3_pfc_resources
[] = {
17 .flags
= IORESOURCE_MEM
,
21 static int __init
plat_pinmux_setup(void)
23 return sh_pfc_register("pfc-shx3", shx3_pfc_resources
,
24 ARRAY_SIZE(shx3_pfc_resources
));
26 arch_initcall(plat_pinmux_setup
);