[PATCH v2] kernel module: fix apply_r_riscv_rcv_branch_rela typo
Palmer Dabbelt
palmer at dabbelt.com
Thu Mar 31 13:28:08 PDT 2022
On Wed, 23 Mar 2022 19:09:21 PDT (-0700), zepan at sipeed.com wrote:
> This patch fix typo: apply_r_riscv_rcv_branch_rela -> apply_r_riscv_rvc_branch_rela
>
> Signed-off-by: Wu Caize <zepan at sipeed.com>
> ---
> arch/riscv/kernel/module.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/arch/riscv/kernel/module.c b/arch/riscv/kernel/module.c
> index 68a9e3d1fe16..b92e93f2aac3 100644
> --- a/arch/riscv/kernel/module.c
> +++ b/arch/riscv/kernel/module.c
> @@ -56,7 +56,7 @@ static int apply_r_riscv_jal_rela(struct module *me, u32 *location,
> return 0;
> }
>
> -static int apply_r_riscv_rcv_branch_rela(struct module *me, u32 *location,
> +static int apply_r_riscv_rvc_branch_rela(struct module *me, u32 *location,
> Elf_Addr v)
> {
> ptrdiff_t offset = (void *)v - (void *)location;
> @@ -290,7 +290,7 @@ static int (*reloc_handlers_rela[]) (struct module *me, u32 *location,
> [R_RISCV_64] = apply_r_riscv_64_rela,
> [R_RISCV_BRANCH] = apply_r_riscv_branch_rela,
> [R_RISCV_JAL] = apply_r_riscv_jal_rela,
> - [R_RISCV_RVC_BRANCH] = apply_r_riscv_rcv_branch_rela,
> + [R_RISCV_RVC_BRANCH] = apply_r_riscv_rvc_branch_rela,
> [R_RISCV_RVC_JUMP] = apply_r_riscv_rvc_jump_rela,
> [R_RISCV_PCREL_HI20] = apply_r_riscv_pcrel_hi20_rela,
> [R_RISCV_PCREL_LO12_I] = apply_r_riscv_pcrel_lo12_i_rela,
Thanks, this is on for-next.
More information about the linux-riscv
mailing list