]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
MIPS: MTX1: Fix build.
authorRalf Baechle <ralf@linux-mips.org>
Tue, 3 Aug 2010 02:42:32 +0000 (03:42 +0100)
committerRalf Baechle <ralf@linux-mips.org>
Thu, 5 Aug 2010 12:25:40 +0000 (13:25 +0100)
  CC      arch/mips/alchemy/mtx-1/board_setup.o
{standard input}: Assembler messages:
{standard input}:263: Error: opcode not supported on this processor: mips1 (mips1) `sync'
{standard input}:274: Error: opcode not supported on this processor: mips1 (mips1) `sync'
{standard input}:296: Error: opcode not supported on this processor: mips1 (mips1) `sync'
[...]

Any .set mipsX statement other than .set mips0 at the end of inline
assembler is a big fat bug.

Introduced by 9482eabeca315c0276ffb50026b7482481b7097b (linux-mips.org) rsp.
32fd6901a6d8d19f94e4de6be4e4b552ab078620 (kernel.org).

While at it, fix the same issue in

  arch/mips/alchemy/devboards/pb1000/board_setup.c
  arch/mips/alchemy/xxs1500/board_setup.c

as well.

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/alchemy/devboards/pb1000/board_setup.c
arch/mips/alchemy/mtx-1/board_setup.c
arch/mips/alchemy/xxs1500/board_setup.c

index 4ef50d86b18127c0dae904127cba9bec5c31520c..46fdc8c9b99f69a61a5dd18c79c2a464d2377fb3 100644 (file)
@@ -49,7 +49,10 @@ static void board_power_off(void)
 {
        printk(KERN_ALERT "It's now safe to remove power\n");
        while (1)
-               asm volatile (".set mips3 ; wait ; .set mips1");
+               asm volatile (
+               "       .set    mips32                                  \n"
+               "       wait                                            \n"
+               "       .set    mips0                                   \n");
 }
 
 void __init board_setup(void)
index 52d883d37dd7e4b69a82ab89e724c7b0c2cca7d4..def1a75d756144227c82fc328a896aaf5a9c3f94 100644 (file)
@@ -62,7 +62,10 @@ static void mtx1_power_off(void)
 {
        printk(KERN_ALERT "It's now safe to remove power\n");
        while (1)
-               asm volatile (".set mips3 ; wait ; .set mips1");
+               asm volatile (
+               "       .set    mips32                                  \n"
+               "       wait                                            \n"
+               "       .set    mips0                                   \n");
 }
 
 void __init board_setup(void)
index 47b42927607b2eb11d98a1cf8345515260538747..7868aeab2453c6f8daab6bd98bae596258680022 100644 (file)
@@ -44,7 +44,10 @@ static void xxs1500_power_off(void)
 {
        printk(KERN_ALERT "It's now safe to remove power\n");
        while (1)
-               asm volatile (".set mips3 ; wait ; .set mips1");
+               asm volatile (
+               "       .set    mips32                                  \n"
+               "       wait                                            \n"
+               "       .set    mips0                                   \n");
 }
 
 void __init board_setup(void)