commit | 9d88a0aae8115e96b3f323cdb23e5725366a20e2 | [log] [tgz] |
---|---|---|
author | Masahiro Yamada <masahiroy@kernel.org> | Thu Apr 16 14:01:44 2020 +0900 |
committer | Tom Rini <trini@konsulko.com> | Fri Apr 24 10:51:32 2020 -0400 |
tree | 7ead00d9ca4cf9c06308a8f3beb0c595e38e90b2 | |
parent | f9f5a7e524fc68d965d7df240bf17db4af671808 [diff] |
fixdep: handle CONFIG_IS_ENABLE() and friends for TPL Since commit f1c6e1922eb5 ("spl: dm: use CONFIG_IS_ENABLED to test for the DM option"), CONFIG_IS_ENABLED() handles CONFIG_TPL_* options, but fixdep still cannot because it hard-codes the "SPL_" prefix as follows: char tmp_buf[256] = "SPL_"; /* hack for U-Boot */ Take care of the "TPL_" prefix too. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>