[PATCH] riscv: fix typo in init.c
Jisheng Zhang
jszhang3 at mail.ustc.edu.cn
Sun May 30 17:11:40 PDT 2021
On Sun, 30 May 2021 16:22:17 +0300
Vitaly Wool <vitaly.wool at konsulko.com> wrote:
> Commit 010623568222 introduced a typo in "__initdata" spelling
> which led to build breakage for XIP. Fix that.
oops, nice catch! Sorry for that.
>
> Fixes: 010623568222bd144eb73aa9f3b46c79b63d7676
This "Fixes" tag seems not correct.Should be
Fixes: 010623568222 ("riscv: mm: init: Consolidate vars, functions")
After this change,
Reviewed-by: Jisheng Zhang <jszhang at kernel.org>
> Signed-off-by: Vitaly Wool <vitaly.wool at konsulko.com>
> ---
> arch/riscv/mm/init.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/riscv/mm/init.c b/arch/riscv/mm/init.c
> index ae32f78207f0..e7b136abf90c 100644
> --- a/arch/riscv/mm/init.c
> +++ b/arch/riscv/mm/init.c
> @@ -451,7 +451,7 @@ static uintptr_t load_sz __initdata;
> #endif
>
> #ifdef CONFIG_XIP_KERNEL
> -static uintptr_t xiprom __inidata;
> +static uintptr_t xiprom __initdata;
> static uintptr_t xiprom_sz __initdata;
> #define xiprom_sz (*((uintptr_t *)XIP_FIXUP(&xiprom_sz)))
> #define xiprom (*((uintptr_t *)XIP_FIXUP(&xiprom)))
More information about the linux-riscv
mailing list