Skip to content
Commit 44815c90 authored by Masahiro Yamada's avatar Masahiro Yamada
Browse files

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: default avatarMasahiro Yamada <masahiroy@kernel.org>
parent e54dd93a
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment