mirror of
https://xff.cz/git/u-boot/
synced 2025-10-17 16:02:33 +02:00
CONFIG_IS_ENABLED() takes the kconfig name without the CONFIG_ prefix, e.g. CONFIG_IS_ENABLED(CLK) for CONFIG_CLK. Some of these were being fixed every now and then, see: commit71ba2cb0d6
("board: stm32mp1: correct CONFIG_IS_ENABLED usage for LED") commita5ada25e42
("rockchip: clk: fix wrong CONFIG_IS_ENABLED handling") commit5daf6e56d3
("common: console: Fix duplicated CONFIG in silent env callback") commit48bfc31b64
("MIPS: bootm: Fix broken boot_env_legacy codepath") Fix all files found by `git grep "CONFIG_IS_ENABLED(CONFIG"` by running ':%s/CONFIG_IS_ENABLED(CONFIG_\(\w+\))/CONFIG_IS_ENABLED(\1)/g' in vim. Signed-off-by: Alper Nebi Yasak <alpernebiyasak@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>