Re: [PATCH 5/8] makefile: riscv: Drop useless argument of prelink-riscv
> From: U-Boot On Behalf Of Bin Meng > Sent: Thursday, March 30, 2023 12:20 PM > To: u-boot@lists.denx.de > Cc: Heinrich Schuchardt ; Kever Yang > ; Marek Behún ; Pali Rohár > ; Quentin Schulz ; > Simon Glass > Subject: [PATCH 5/8] makefile: riscv: Drop useless argument of prelink-riscv > > The argv[2] is never used in prelink-riscv. Drop it. > > Signed-off-by: Bin Meng > --- > > Makefile | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Reviewed-by: Rick Chen
[PATCH 5/8] makefile: riscv: Drop useless argument of prelink-riscv
The argv[2] is never used in prelink-riscv. Drop it. Signed-off-by: Bin Meng --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ab93f29fc5..33e54bfa3d 100644 --- a/Makefile +++ b/Makefile @@ -1758,7 +1758,7 @@ ifeq ($(CONFIG_KALLSYMS),y) endif ifeq ($(CONFIG_RISCV),y) - @tools/prelink-riscv $@ 0 + @tools/prelink-riscv $@ endif quiet_cmd_sym ?= SYM $@ -- 2.34.1