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

2024-02-23 Thread Ivan Orlov
On 22/02/2024 17:46, Tom Rini wrote: On Mon, Feb 19, 2024 at 06:18:38PM +, Ivan Orlov wrote: We should have CONFIG_DM_I2C or CONFIG_(SPL_)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 ent

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

2024-02-22 Thread Tom Rini
On Mon, Feb 19, 2024 at 06:18:38PM +, Ivan Orlov wrote: > We should have CONFIG_DM_I2C or CONFIG_(SPL_)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 corr

[PATCH] cmd: eeprom: Fix config dependency

2024-02-19 Thread Ivan Orlov
We should have CONFIG_DM_I2C or CONFIG_(SPL_)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 --- cmd/Kconfig | 1 + 1 fi