diff options
author | Jisheng Zhang | 2021-11-18 19:25:45 +0800 |
---|---|---|
committer | Palmer Dabbelt | 2022-01-05 17:52:47 -0800 |
commit | 6dd10d9166a0c06260e0ac6b1fac454117c8024a (patch) | |
tree | 7102788ef5eb73d674726348999476a5559ea216 /arch/riscv/lib | |
parent | 9d504f9aa5c1b76673018da9503e76b351a24b8c (diff) |
riscv: extable: consolidate definitions
This is a riscv port of commit 819771cc2892 ("arm64: extable:
consolidate definitions").
Signed-off-by: Jisheng Zhang <jszhang@kernel.org>
Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
Diffstat (limited to 'arch/riscv/lib')
-rw-r--r-- | arch/riscv/lib/uaccess.S | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/arch/riscv/lib/uaccess.S b/arch/riscv/lib/uaccess.S index 047f517ac780..8c475f4da308 100644 --- a/arch/riscv/lib/uaccess.S +++ b/arch/riscv/lib/uaccess.S @@ -1,15 +1,13 @@ #include <linux/linkage.h> #include <asm-generic/export.h> #include <asm/asm.h> +#include <asm/asm-extable.h> #include <asm/csr.h> .macro fixup op reg addr lbl 100: \op \reg, \addr - .section __ex_table,"a" - .balign 4 - .long (100b - .), (\lbl - .) - .previous + _asm_extable 100b, \lbl .endm ENTRY(__asm_copy_to_user) |