diff options
author | Magnus Damm <damm@opensource.se> | 2010-02-16 10:48:15 +0000 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2010-03-15 11:13:13 +0900 |
commit | 03fb256df9c960b10c0e01b7e92d2f31433675fe (patch) | |
tree | ae65bbc3a539e674ef0c82f11d653ea1d386e16f /arch/arm/mach-shmobile/clock-sh7367.c | |
parent | bca14dd14f3b0c5e3e2d1d314679f85b67871365 (diff) |
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 58bd54e1113..bb940c6e4e6 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, } }; |