commit | 144b1963337b1404bd9ebd5f7a021628f30bb851 | [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 | 214aaedca1c4a937f0058812f5c82f6dc3f8ff9b [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>