RISC-V: Stop using LOCAL for the uaccess fixups
[linux-2.6-microblaze.git] / arch / riscv / lib / uaccess.S
index f29d2ba..fceaeb1 100644 (file)
@@ -3,14 +3,12 @@
 #include <asm/asm.h>
 #include <asm/csr.h>
 
-       .altmacro
        .macro fixup op reg addr lbl
-       LOCAL _epc
-_epc:
+100:
        \op \reg, \addr
        .section __ex_table,"a"
        .balign RISCV_SZPTR
-       RISCV_PTR _epc, \lbl
+       RISCV_PTR 100b, \lbl
        .previous
        .endm