diff options
| author | Tom Rini <[email protected]> | 2026-03-23 13:52:51 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-04-07 11:32:36 -0600 |
| commit | 7289867a8d73525da169e0f340686b5138b8e50a (patch) | |
| tree | 90d19d91bc8db33c829e8f0ca85f20da5ac01bf9 | |
| parent | 1fd04cf46baf108147c090e04d56ab84df2430a9 (diff) | |
w1: Correct dependencies for CMD_W1
The CMD_W1 functionality can only work with both W1 and W1_EEPROM
enabled, so express this dependency in Kconfig.
Signed-off-by: Tom Rini <[email protected]>
| -rw-r--r-- | cmd/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 0ddf300efab..7bbeaad04ff 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1395,7 +1395,7 @@ config CMD_I3C and perform read and write on the connected i3c devices. config CMD_W1 - depends on W1 + depends on W1 && W1_EEPROM default y if W1 bool "w1 - Support for Dallas 1-Wire protocol" help |
