ralink: add back the gpio_export_named() patch for 3.14
[openwrt/svn-archive/archive.git] / target / linux / ramips / patches-3.14 / 0011-MIPS-ralink-add-rt2880-wmac-clock.patch
1 From bf4f5250117cd65a78903b8ce302499806416ed1 Mon Sep 17 00:00:00 2001
2 From: John Crispin <blogic@openwrt.org>
3 Date: Mon, 4 Aug 2014 09:52:22 +0200
4 Subject: [PATCH 11/57] MIPS: ralink: add rt2880 wmac clock
5
6 Signed-off-by: John Crispin <blogic@openwrt.org>
7 ---
8 arch/mips/ralink/rt288x.c | 3 ++-
9 1 file changed, 2 insertions(+), 1 deletion(-)
10
11 diff --git a/arch/mips/ralink/rt288x.c b/arch/mips/ralink/rt288x.c
12 index f87de1a..90e8934 100644
13 --- a/arch/mips/ralink/rt288x.c
14 +++ b/arch/mips/ralink/rt288x.c
15 @@ -76,7 +76,7 @@ struct ralink_pinmux rt_gpio_pinmux = {
16
17 void __init ralink_clk_init(void)
18 {
19 - unsigned long cpu_rate;
20 + unsigned long cpu_rate, wmac_rate = 40000000;
21 u32 t = rt_sysc_r32(SYSC_REG_SYSTEM_CONFIG);
22 t = ((t >> SYSTEM_CONFIG_CPUCLK_SHIFT) & SYSTEM_CONFIG_CPUCLK_MASK);
23
24 @@ -101,6 +101,7 @@ void __init ralink_clk_init(void)
25 ralink_clk_add("300500.uart", cpu_rate / 2);
26 ralink_clk_add("300c00.uartlite", cpu_rate / 2);
27 ralink_clk_add("400000.ethernet", cpu_rate / 2);
28 + ralink_clk_add("480000.wmac", wmac_rate);
29 }
30
31 void __init ralink_of_remap(void)
32 --
33 1.7.10.4
34