diff options
author | Jonas Gorski <jogo@openwrt.org> | 2014-08-01 21:56:35 +0000 |
---|---|---|
committer | Jonas Gorski <jogo@openwrt.org> | 2014-08-01 21:56:35 +0000 |
commit | 6354265168e5c7b593c6579c3a211cd94e914f94 (patch) | |
tree | 88a9fb14dbdecfde63ca70c49860b2269f0f3886 /target/linux/brcm63xx/patches-3.10/100-MIPS-bmips-fix-compilation-for-BMIPS5000.patch | |
parent | 9762c605fe5fe106010f441c9daf42b08c1fcad8 (diff) | |
download | upstream-6354265168e5c7b593c6579c3a211cd94e914f94.tar.gz upstream-6354265168e5c7b593c6579c3a211cd94e914f94.tar.bz2 upstream-6354265168e5c7b593c6579c3a211cd94e914f94.zip |
brcm63xx: switch to 3.14
Now that BB is branched off, we can now switch to 3.14 and start
breaking stuff again.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@41941 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/brcm63xx/patches-3.10/100-MIPS-bmips-fix-compilation-for-BMIPS5000.patch')
-rw-r--r-- | target/linux/brcm63xx/patches-3.10/100-MIPS-bmips-fix-compilation-for-BMIPS5000.patch | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/target/linux/brcm63xx/patches-3.10/100-MIPS-bmips-fix-compilation-for-BMIPS5000.patch b/target/linux/brcm63xx/patches-3.10/100-MIPS-bmips-fix-compilation-for-BMIPS5000.patch deleted file mode 100644 index 3eae0fcd1d..0000000000 --- a/target/linux/brcm63xx/patches-3.10/100-MIPS-bmips-fix-compilation-for-BMIPS5000.patch +++ /dev/null @@ -1,67 +0,0 @@ -From d55975b74389b2cf1a38732062ff89303940f6e1 Mon Sep 17 00:00:00 2001 -From: Jonas Gorski <jogo@openwrt.org> -Date: Sat, 29 Jun 2013 11:46:56 +0200 -Subject: [PATCH 01/10] MIPS: bmips: fix compilation for BMIPS5000 - -Replace the macro names in strings with actual macro invocation. - -Fixes the following build error: - - CC arch/mips/kernel/smp-bmips.o -{standard input}: Assembler messages: -{standard input}:951: Error: Unrecognized opcode `_ssnop' -{standard input}:952: Error: Unrecognized opcode `_ssnop' -(...) -make[6]: *** [arch/mips/kernel/smp-bmips.o] Error 1 - -Signed-off-by: Jonas Gorski <jogo@openwrt.org> ---- - arch/mips/include/asm/bmips.h | 28 ++++++++++++++-------------- - 1 file changed, 14 insertions(+), 14 deletions(-) - ---- a/arch/mips/include/asm/bmips.h -+++ b/arch/mips/include/asm/bmips.h -@@ -97,15 +97,15 @@ static inline unsigned long bmips_read_z - ".set noreorder\n" - "cache %1, 0(%2)\n" - "sync\n" -- "_ssnop\n" -- "_ssnop\n" -- "_ssnop\n" -- "_ssnop\n" -- "_ssnop\n" -- "_ssnop\n" -- "_ssnop\n" -+ __stringify(___ssnop) "\n" -+ __stringify(___ssnop) "\n" -+ __stringify(___ssnop) "\n" -+ __stringify(___ssnop) "\n" -+ __stringify(___ssnop) "\n" -+ __stringify(___ssnop) "\n" -+ __stringify(___ssnop) "\n" - "mfc0 %0, $28, 3\n" -- "_ssnop\n" -+ __stringify(___ssnop) "\n" - ".set pop\n" - : "=&r" (ret) - : "i" (Index_Load_Tag_S), "r" (ZSCM_REG_BASE + offset) -@@ -119,13 +119,13 @@ static inline void bmips_write_zscm_reg( - ".set push\n" - ".set noreorder\n" - "mtc0 %0, $28, 3\n" -- "_ssnop\n" -- "_ssnop\n" -- "_ssnop\n" -+ __stringify(___ssnop) "\n" -+ __stringify(___ssnop) "\n" -+ __stringify(___ssnop) "\n" - "cache %1, 0(%2)\n" -- "_ssnop\n" -- "_ssnop\n" -- "_ssnop\n" -+ __stringify(___ssnop) "\n" -+ __stringify(___ssnop) "\n" -+ __stringify(___ssnop) "\n" - : /* no outputs */ - : "r" (data), - "i" (Index_Store_Tag_S), "r" (ZSCM_REG_BASE + offset) |