diff options
author | Chengyang Fan <cy.fan@huawei.com> | 2021-01-25 12:23:47 +0100 |
---|---|---|
committer | Palmer Dabbelt <palmerdabbelt@google.com> | 2021-02-19 08:18:03 +0100 |
commit | 3449831d92fea50b470d5b22435cfeaf15a6dd54 (patch) | |
tree | 1945156a9114e3e97aaf0ff37deaf2d6a7bcfeef /arch/riscv/include/asm/set_memory.h | |
parent | RISC-V: probes: Treat the instruction stream as host-endian (diff) | |
download | linux-3449831d92fea50b470d5b22435cfeaf15a6dd54.tar.xz linux-3449831d92fea50b470d5b22435cfeaf15a6dd54.zip |
RISC-V: remove unneeded semicolon
Remove a superfluous semicolon after function definition.
Signed-off-by: Chengyang Fan <cy.fan@huawei.com>
Signed-off-by: Palmer Dabbelt <palmerdabbelt@google.com>
Diffstat (limited to 'arch/riscv/include/asm/set_memory.h')
-rw-r--r-- | arch/riscv/include/asm/set_memory.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/riscv/include/asm/set_memory.h b/arch/riscv/include/asm/set_memory.h index 211eb8244a45..9fa510707012 100644 --- a/arch/riscv/include/asm/set_memory.h +++ b/arch/riscv/include/asm/set_memory.h @@ -22,7 +22,7 @@ static inline int set_memory_ro(unsigned long addr, int numpages) { return 0; } static inline int set_memory_rw(unsigned long addr, int numpages) { return 0; } static inline int set_memory_x(unsigned long addr, int numpages) { return 0; } static inline int set_memory_nx(unsigned long addr, int numpages) { return 0; } -static inline void protect_kernel_text_data(void) {}; +static inline void protect_kernel_text_data(void) {} static inline int set_memory_rw_nx(unsigned long addr, int numpages) { return 0; } #endif |