diff options
author | Simon Glass <sjg@chromium.org> | 2017-05-17 09:25:03 (GMT) |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-05-22 12:37:09 (GMT) |
commit | 2c6ebff1e12a6553719356c879e2b41ee8d36af8 (patch) | |
tree | 663a499e0d150d25205849d8e1f30b3f2e83577c /drivers | |
parent | 879704d8f7387b05272b79197a3c782d1499283b (diff) | |
download | u-boot-2c6ebff1e12a6553719356c879e2b41ee8d36af8.tar.xz |
Kconfig: Drop CONFIG_SYS_I2C_DTT_ADDR
This option is only defined to a non-default value by canyonlands, which
needs conversion to driver model (where the I2C address would be defined
by the device tree).
Drop this option.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/hwmon/ds1775.c | 2 | ||||
-rw-r--r-- | drivers/hwmon/lm75.c | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/drivers/hwmon/ds1775.c b/drivers/hwmon/ds1775.c index b95b130..4c0c0b8 100644 --- a/drivers/hwmon/ds1775.c +++ b/drivers/hwmon/ds1775.c @@ -11,7 +11,7 @@ #include <i2c.h> #include <dtt.h> -#define DTT_I2C_DEV_CODE CONFIG_SYS_I2C_DTT_ADDR /* Dallas Semi's DS1775 device code */ +#define DTT_I2C_DEV_CODE 0x48 /* Dallas Semi's DS1775 device code */ #define DTT_READ_TEMP 0x0 #define DTT_CONFIG 0x1 #define DTT_TEMP_HYST 0x2 diff --git a/drivers/hwmon/lm75.c b/drivers/hwmon/lm75.c index 462f902..aafa475 100644 --- a/drivers/hwmon/lm75.c +++ b/drivers/hwmon/lm75.c @@ -16,11 +16,7 @@ /* * Device code */ -#if defined(CONFIG_SYS_I2C_DTT_ADDR) -#define DTT_I2C_DEV_CODE CONFIG_SYS_I2C_DTT_ADDR -#else #define DTT_I2C_DEV_CODE 0x48 /* ON Semi's LM75 device */ -#endif #define DTT_READ_TEMP 0x0 #define DTT_CONFIG 0x1 #define DTT_TEMP_HYST 0x2 |