summaryrefslogtreecommitdiffstats
path: root/target/linux/lantiq/patches-3.18/0038-MIPS-lantiq-fpi-on-ar9.patch
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2015-02-09 12:13:25 +0000
committerJohn Crispin <john@openwrt.org>2015-02-09 12:13:25 +0000
commit826b461427fa2abe634e652a05dfc86fc8a6c609 (patch)
tree3df60f7e8fb951cd8e5b2a3d19c626d5a611b950 /target/linux/lantiq/patches-3.18/0038-MIPS-lantiq-fpi-on-ar9.patch
parent64f9626963cf3abf7550df706e42973f4c0221f4 (diff)
downloadmaster-31e0f0ae-826b461427fa2abe634e652a05dfc86fc8a6c609.tar.gz
master-31e0f0ae-826b461427fa2abe634e652a05dfc86fc8a6c609.tar.bz2
master-31e0f0ae-826b461427fa2abe634e652a05dfc86fc8a6c609.zip
lantiq: add 3.18 support
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 44348
Diffstat (limited to 'target/linux/lantiq/patches-3.18/0038-MIPS-lantiq-fpi-on-ar9.patch')
-rw-r--r--target/linux/lantiq/patches-3.18/0038-MIPS-lantiq-fpi-on-ar9.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/target/linux/lantiq/patches-3.18/0038-MIPS-lantiq-fpi-on-ar9.patch b/target/linux/lantiq/patches-3.18/0038-MIPS-lantiq-fpi-on-ar9.patch
new file mode 100644
index 0000000000..5fbe0a1137
--- /dev/null
+++ b/target/linux/lantiq/patches-3.18/0038-MIPS-lantiq-fpi-on-ar9.patch
@@ -0,0 +1,21 @@
+Return correct value for fpi clock on ar9.
+
+Signed-off-by: Ben Mulvihill <ben.mulvihill@gmail.com>
+---
+ arch/mips/lantiq/xway/clk.c | 5 +++--
+ 1 file changed, 3 insertions(+), 2 deletions(-)
+
+--- a/arch/mips/lantiq/xway/clk.c
++++ b/arch/mips/lantiq/xway/clk.c
+@@ -87,8 +87,9 @@ unsigned long ltq_ar9_fpi_hz(void)
+ unsigned long sys = ltq_ar9_sys_hz();
+
+ if (ltq_cgu_r32(CGU_SYS) & BIT(0))
+- return sys;
+- return sys >> 1;
++ return sys / 3;
++ else
++ return sys / 2;
+ }
+
+ unsigned long ltq_ar9_cpu_hz(void)