perf tools: Improve 'libbabel' feature check failure message
[linux/fpc-iii.git] / arch / sh / kernel / cpu / sh2a / pinmux-sh7269.c
blob4c17fb6970b1574e38f566e5e7baea5fc37b9b06
1 /*
2 * SH7269 Pinmux
4 * Copyright (C) 2012 Renesas Electronics Europe Ltd
5 * Copyright (C) 2012 Phil Edworthy
7 * This file is subject to the terms and conditions of the GNU General Public
8 * License. See the file "COPYING" in the main directory of this archive
9 * for more details.
12 #include <linux/bug.h>
13 #include <linux/init.h>
14 #include <linux/ioport.h>
15 #include <linux/kernel.h>
16 #include <cpu/pfc.h>
18 static struct resource sh7269_pfc_resources[] = {
19 [0] = {
20 .start = 0xfffe3800,
21 .end = 0xfffe391f,
22 .flags = IORESOURCE_MEM,
26 static int __init plat_pinmux_setup(void)
28 return sh_pfc_register("pfc-sh7269", sh7269_pfc_resources,
29 ARRAY_SIZE(sh7269_pfc_resources));
31 arch_initcall(plat_pinmux_setup);