Re: [PATCH v2] cmd: eeprom: Fix config dependency

2024-03-04 Thread Tom Rini
On Fri, Feb 23, 2024 at 05:14:20PM +, Ivan Orlov wrote: > We should have CONFIG_DM_I2C or CONFIG_SYS_I2C_LEGACY enabled in > order for `cmd/eeprom.c` to compile as it depends on the i2c functions > which are not compiled otherwise. Update the Kconfig entry for the > 'eeprom' command

Re: [PATCH v2] cmd: eeprom: Fix config dependency

2024-02-23 Thread Tom Rini
On Fri, Feb 23, 2024 at 05:14:20PM +, Ivan Orlov wrote: > We should have CONFIG_DM_I2C or CONFIG_SYS_I2C_LEGACY enabled in > order for `cmd/eeprom.c` to compile as it depends on the i2c functions > which are not compiled otherwise. Update the Kconfig entry for the > 'eeprom' command

[PATCH v2] cmd: eeprom: Fix config dependency

2024-02-23 Thread Ivan Orlov
We should have CONFIG_DM_I2C or CONFIG_SYS_I2C_LEGACY enabled in order for `cmd/eeprom.c` to compile as it depends on the i2c functions which are not compiled otherwise. Update the Kconfig entry for the 'eeprom' command correspondingly. Signed-off-by: Ivan Orlov --- V1 -> V2: - Remove redundant