diff options
author | Jonas Gorski <jogo@openwrt.org> | 2013-09-06 19:01:17 +0000 |
---|---|---|
committer | Jonas Gorski <jogo@openwrt.org> | 2013-09-06 19:01:17 +0000 |
commit | f8cd14921d9ae957a092378317bc11ededdeb0ef (patch) | |
tree | ddabb353f50dd7bfff81bb4b52bbbb9faaf86896 /target/linux/brcm63xx/patches-3.9/102-MIPS-bmips-add-macros-for-testing-the-current-bmips-.patch | |
parent | dc028776f0812f629546ef8081e2e30d9918ea36 (diff) | |
download | upstream-f8cd14921d9ae957a092378317bc11ededdeb0ef.tar.gz upstream-f8cd14921d9ae957a092378317bc11ededdeb0ef.tar.bz2 upstream-f8cd14921d9ae957a092378317bc11ededdeb0ef.zip |
brcm63xx: drop linux 3.9 support
It is EOL since quite a while, so no need to keep it around.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 37911
Diffstat (limited to 'target/linux/brcm63xx/patches-3.9/102-MIPS-bmips-add-macros-for-testing-the-current-bmips-.patch')
-rw-r--r-- | target/linux/brcm63xx/patches-3.9/102-MIPS-bmips-add-macros-for-testing-the-current-bmips-.patch | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/target/linux/brcm63xx/patches-3.9/102-MIPS-bmips-add-macros-for-testing-the-current-bmips-.patch b/target/linux/brcm63xx/patches-3.9/102-MIPS-bmips-add-macros-for-testing-the-current-bmips-.patch deleted file mode 100644 index af38b35689..0000000000 --- a/target/linux/brcm63xx/patches-3.9/102-MIPS-bmips-add-macros-for-testing-the-current-bmips-.patch +++ /dev/null @@ -1,36 +0,0 @@ -From 971b8b3d5101b3bb868e63f3eb96fe69b7110c61 Mon Sep 17 00:00:00 2001 -From: Jonas Gorski <jogo@openwrt.org> -Date: Thu, 27 Jun 2013 12:40:15 +0200 -Subject: [PATCH 03/10] MIPS: bmips: add macros for testing the current bmips - CPU - -Makes it easy to make code conditionally compiled for supported CPUs -without directly relying on #ifdefs. - -Signed-off-by: Jonas Gorski <jogo@openwrt.org> ---- - arch/mips/include/asm/bmips.h | 11 +++++++++++ - 1 file changed, 11 insertions(+) - ---- a/arch/mips/include/asm/bmips.h -+++ b/arch/mips/include/asm/bmips.h -@@ -45,8 +45,19 @@ - #if !defined(__ASSEMBLY__) - - #include <linux/cpumask.h> -+#include <asm/cpu-features.h> - #include <asm/r4kcache.h> - -+#define cpu_is_bmips32() (current_cpu_type() == CPU_BMIPS32) -+#define cpu_is_bmips3300() (IS_ENABLED(CONFIG_CPU_BMIPS3300) && \ -+ current_cpu_type() == CPU_BMIPS3300) -+#define cpu_is_bmips4350() (IS_ENABLED(CONFIG_CPU_BMIPS4350) && \ -+ current_cpu_type() == CPU_BMIPS4350) -+#define cpu_is_bmips4380() (IS_ENABLED(CONFIG_CPU_BMIPS4380) && \ -+ current_cpu_type() == CPU_BMIPS4380) -+#define cpu_is_bmips5000() (IS_ENABLED(CONFIG_CPU_BMIPS5000) && \ -+ current_cpu_type() == CPU_BMIPS5000) -+ - extern struct plat_smp_ops bmips_smp_ops; - extern char bmips_reset_nmi_vec; - extern char bmips_reset_nmi_vec_end; |