perf tools: Improve 'libbabel' feature check failure message
[linux/fpc-iii.git] / arch / sh / kernel / cpu / sh4a / pinmux-sh7757.c
blob567745d44221451daf6b5b71fc9de132f28da1cf
1 /*
2 * SH7757 (B0 step) Pinmux
4 * Copyright (C) 2009-2010 Renesas Solutions Corp.
6 * Author : Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
8 * Based on SH7723 Pinmux
9 * Copyright (C) 2008 Magnus Damm
11 * This file is subject to the terms and conditions of the GNU General Public
12 * License. See the file "COPYING" in the main directory of this archive
13 * for more details.
16 #include <linux/bug.h>
17 #include <linux/init.h>
18 #include <linux/kernel.h>
19 #include <linux/ioport.h>
20 #include <cpu/pfc.h>
22 static struct resource sh7757_pfc_resources[] = {
23 [0] = {
24 .start = 0xffec0000,
25 .end = 0xffec008f,
26 .flags = IORESOURCE_MEM,
30 static int __init plat_pinmux_setup(void)
32 return sh_pfc_register("pfc-sh7757", sh7757_pfc_resources,
33 ARRAY_SIZE(sh7757_pfc_resources));
35 arch_initcall(plat_pinmux_setup);