kbuild: clean up objtool_args slightly
authorMasahiro Yamada <masahiroy@kernel.org>
Sat, 28 Aug 2021 09:51:01 +0000 (18:51 +0900)
committerMasahiro Yamada <masahiroy@kernel.org>
Thu, 2 Sep 2021 23:17:21 +0000 (08:17 +0900)
commit44815c90210cd858c4a116c3eb35270160cecf81
tree602e1b5473b3afb2fbb0a6855da104482c7f361d
parente54dd93a08228b9942d708b133ad3715d92712b0
kbuild: clean up objtool_args slightly

The code:

  $(if $(or $(CONFIG_GCOV_KERNEL),$(CONFIG_LTO_CLANG)), ...)

... can be simpled to:

  $(if $(CONFIG_GCOV_KERNEL)$(CONFIG_LTO_CLANG), ...)

Also, remove meaningless commas at the end of $(if ...).

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
scripts/Makefile.lib