mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@41353 3c298f89-4303-0410-b956-a3cf2f4a3e73
20 lines
636 B
Diff
20 lines
636 B
Diff
--- a/arch/mips/ralink/rt288x.c
|
|
+++ b/arch/mips/ralink/rt288x.c
|
|
@@ -52,7 +52,7 @@ static void rt288x_wdt_reset(void)
|
|
|
|
void __init ralink_clk_init(void)
|
|
{
|
|
- unsigned long cpu_rate;
|
|
+ unsigned long cpu_rate, wmac_rate = 40000000;
|
|
u32 t = rt_sysc_r32(SYSC_REG_SYSTEM_CONFIG);
|
|
t = ((t >> SYSTEM_CONFIG_CPUCLK_SHIFT) & SYSTEM_CONFIG_CPUCLK_MASK);
|
|
|
|
@@ -77,6 +77,7 @@ void __init ralink_clk_init(void)
|
|
ralink_clk_add("300500.uart", cpu_rate / 2);
|
|
ralink_clk_add("300c00.uartlite", cpu_rate / 2);
|
|
ralink_clk_add("400000.ethernet", cpu_rate / 2);
|
|
+ ralink_clk_add("480000.wmac", wmac_rate);
|
|
}
|
|
|
|
void __init ralink_of_remap(void)
|