sh: Rename sci_ick and sci_fck clock to fck
[deliverable/linux.git] / arch / sh / kernel / cpu / sh4a / pinmux-sh7724.c
CommitLineData
0207a2ef
KM
1/*
2 * SH7724 Pinmux
3 *
4 * Copyright (C) 2009 Renesas Solutions Corp.
5 *
6 * Kuninori Morimoto <morimoto.kuninori@renesas.com>
7 *
8 * Based on SH7723 Pinmux
9 * Copyright (C) 2008 Magnus Damm
10 *
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.
14 */
15
42954cff 16#include <linux/bug.h>
0207a2ef
KM
17#include <linux/init.h>
18#include <linux/kernel.h>
42954cff 19#include <linux/ioport.h>
18ebd228 20#include <cpu/pfc.h>
0207a2ef 21
42954cff
LP
22static struct resource sh7724_pfc_resources[] = {
23 [0] = {
24 .start = 0xa4050100,
25 .end = 0xa405016f,
26 .flags = IORESOURCE_MEM,
27 },
28};
29
0207a2ef
KM
30static int __init plat_pinmux_setup(void)
31{
42954cff
LP
32 return sh_pfc_register("pfc-sh7724", sh7724_pfc_resources,
33 ARRAY_SIZE(sh7724_pfc_resources));
0207a2ef
KM
34}
35arch_initcall(plat_pinmux_setup);
This page took 0.336979 seconds and 5 git commands to generate.