diff options
author | John Crispin <john@openwrt.org> | 2015-03-16 07:39:52 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-03-16 07:39:52 +0000 |
commit | 257671615b5a915e7fe5767990487bbccaf2b4a1 (patch) | |
tree | 959a849b8ece8315d25df194fa68a7a79b0ff5f0 /target/linux/lantiq/patches-3.14/0038-MIPS-lantiq-fpi-on-ar9.patch | |
parent | 7648d80c901faedb43f296411e9686d7e9eda592 (diff) | |
download | upstream-257671615b5a915e7fe5767990487bbccaf2b4a1.tar.gz upstream-257671615b5a915e7fe5767990487bbccaf2b4a1.tar.bz2 upstream-257671615b5a915e7fe5767990487bbccaf2b4a1.zip |
lantiq: drop 3.14 support
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 44812
Diffstat (limited to 'target/linux/lantiq/patches-3.14/0038-MIPS-lantiq-fpi-on-ar9.patch')
-rw-r--r-- | target/linux/lantiq/patches-3.14/0038-MIPS-lantiq-fpi-on-ar9.patch | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/target/linux/lantiq/patches-3.14/0038-MIPS-lantiq-fpi-on-ar9.patch b/target/linux/lantiq/patches-3.14/0038-MIPS-lantiq-fpi-on-ar9.patch deleted file mode 100644 index 5fbe0a1137..0000000000 --- a/target/linux/lantiq/patches-3.14/0038-MIPS-lantiq-fpi-on-ar9.patch +++ /dev/null @@ -1,21 +0,0 @@ -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) |