diff options
author | Magnus Damm <damm@opensource.se> | 2010-02-16 11:48:15 +0100 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2010-03-15 03:13:13 +0100 |
commit | 03fb256df9c960b10c0e01b7e92d2f31433675fe (patch) | |
tree | ae65bbc3a539e674ef0c82f11d653ea1d386e16f /arch/arm/mach-shmobile/clock-sh7367.c | |
parent | Merge branch 'core-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/ker... (diff) | |
download | linux-03fb256df9c960b10c0e01b7e92d2f31433675fe.tar.xz linux-03fb256df9c960b10c0e01b7e92d2f31433675fe.zip |
ARM: mach-shmobile: G3EVM KEYSC platform data
This patch adds KEYSC platform data for the G3EVM board.
Signed-off-by: Magnus Damm <damm@opensource.se>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/arm/mach-shmobile/clock-sh7367.c')
-rw-r--r-- | arch/arm/mach-shmobile/clock-sh7367.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/mach-shmobile/clock-sh7367.c b/arch/arm/mach-shmobile/clock-sh7367.c index 58bd54e1113a..bb940c6e4e6c 100644 --- a/arch/arm/mach-shmobile/clock-sh7367.c +++ b/arch/arm/mach-shmobile/clock-sh7367.c @@ -75,6 +75,11 @@ static struct clk usb0_clk = { .name = "usb0", }; +/* a static keysc0 clk for now - enough to get sh_keysc working */ +static struct clk keysc0_clk = { + .name = "keysc0", +}; + static struct clk_lookup lookups[] = { { .clk = &peripheral_clk, @@ -82,6 +87,8 @@ static struct clk_lookup lookups[] = { .clk = &r_clk, }, { .clk = &usb0_clk, + }, { + .clk = &keysc0_clk, } }; |