From 373991d6939b01c47b352b1f620ef772419a9cf4 Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Tue, 18 Jul 2023 14:27:36 +0530 Subject: common: Kconfig: Fix CMD_BMP/BMP dependency Using `default y` will not select BMP when CMD_BMP has been enabled, if it was already configured. By using `select`, if `CMD_BMP` is turned on, it will force the presence of `BMP`. Fixes: 072b0e16c4 ("common: Kconfig: Add BMP configs") Signed-off-by: Samuel Dionne-Riel Signed-off-by: Nikhil M Jain --- common/Kconfig | 1 - 1 file changed, 1 deletion(-) (limited to 'common/Kconfig') diff --git a/common/Kconfig b/common/Kconfig index f5ad63ce166..973482f0756 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -1167,7 +1167,6 @@ config IO_TRACE config BMP bool "Enable bmp image display" - default y if CMD_BMP help Enable bmp functions to display bmp image and get bmp info. -- cgit v1.2.3