mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-03-04 15:34:17 +07:00
ftrace, kbuild: condense recordmcount.pl parameter code
Impact: cleanup Sam Ravnborg pointed out that I could condense the code for the parameters of recordmcount.pl by using an $(if ...) condition. Signed-off-by: Steven Rostedt <srostedt@redhat.com> Acked-by: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
e1e302d8a9
commit
b3acf29afd
@ -198,16 +198,10 @@ cmd_modversions = \
|
|||||||
fi;
|
fi;
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifdef CONFIG_64BIT
|
|
||||||
arch_bits = 64
|
|
||||||
else
|
|
||||||
arch_bits = 32
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifdef CONFIG_FTRACE_MCOUNT_RECORD
|
ifdef CONFIG_FTRACE_MCOUNT_RECORD
|
||||||
cmd_record_mcount = perl $(srctree)/scripts/recordmcount.pl \
|
cmd_record_mcount = perl $(srctree)/scripts/recordmcount.pl "$(ARCH)" \
|
||||||
"$(ARCH)" "$(arch_bits)" "$(OBJDUMP)" "$(OBJCOPY)" "$(CC)" "$(LD)" \
|
"$(if $(CONFIG_64BIT),64,32)" \
|
||||||
"$(NM)" "$(RM)" "$(MV)" "$(@)";
|
"$(OBJDUMP)" "$(OBJCOPY)" "$(CC)" "$(LD)" "$(NM)" "$(RM)" "$(MV)" "$(@)";
|
||||||
endif
|
endif
|
||||||
|
|
||||||
define rule_cc_o_c
|
define rule_cc_o_c
|
||||||
|
Loading…
Reference in New Issue
Block a user