diff options
| author | Kory Maincent (TI.com) <[email protected]> | 2025-10-30 17:44:56 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-11-03 10:02:38 -0600 |
| commit | 5b68f58a0883a897e44e8356061103784e49d046 (patch) | |
| tree | 208409349eb239536496d0b6f414b193238edc5e | |
| parent | 4c9d907eef08f9c23c8136f4e957e2e5ed8028c2 (diff) | |
board: ti: Fix CAPE_EEPROM_BUS_NUM Kconfig dependency
The CAPE_EEPROM_BUS_NUM configuration option was incorrectly depending
on CMD_EXTENSION, which represents the extension board command. However,
the cape scan functionality can be built and used independently of the
command interface through the SUPPORT_EXTENSION_SCAN option.
Change the dependency from CMD_EXTENSION to SUPPORT_EXTENSION_SCAN to
properly reflect that the I2C bus configuration is needed for the cape
scan function itself, not specifically for the command.
Signed-off-by: Kory Maincent (TI.com) <[email protected]>
| -rw-r--r-- | board/ti/common/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/ti/common/Kconfig b/board/ti/common/Kconfig index f481812247c..9512c5c23f1 100644 --- a/board/ti/common/Kconfig +++ b/board/ti/common/Kconfig @@ -20,7 +20,7 @@ config CAPE_EEPROM_BUS_NUM int "Cape EEPROM's I2C bus address" range 0 8 default 2 - depends on CMD_EXTENSION + depends on SUPPORT_EXTENSION_SCAN config TI_COMMON_CMD_OPTIONS bool "Enable cmd options on TI platforms" |
