diff options
author | Tom Rini | 2021-12-11 14:55:47 -0500 |
---|---|---|
committer | Tom Rini | 2021-12-27 08:40:33 -0500 |
commit | 5fd4a7ed0ce102c7f3720f67555878bc0b395eb6 (patch) | |
tree | 54b6cf1aca43edef76074464b1654c10c690945c /drivers/misc | |
parent | 936c8559dfe53c33a9bc6b9d0f324d56b0247c64 (diff) |
Clarify CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW in Kconfig
This is a "hex" prompt but the default value was given as an int.
Switch the default to hex (0x0) and remove the defconfigs that were
using the default, but as hex before.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'drivers/misc')
-rw-r--r-- | drivers/misc/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/Kconfig b/drivers/misc/Kconfig index 3bae0720058..33a82592544 100644 --- a/drivers/misc/Kconfig +++ b/drivers/misc/Kconfig @@ -416,7 +416,7 @@ if I2C_EEPROM config SYS_I2C_EEPROM_ADDR_OVERFLOW hex "EEPROM Address Overflow" - default 0 + default 0x0 help EEPROM chips that implement "address overflow" are ones like Catalyst 24WC04/08/16 which has 9/10/11 bits of |