diff options
Diffstat (limited to 'drivers/hwmon/lm73.c')
| -rw-r--r-- | drivers/hwmon/lm73.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/drivers/hwmon/lm73.c b/drivers/hwmon/lm73.c index dd2468353..7b5d893ff 100644 --- a/drivers/hwmon/lm73.c +++ b/drivers/hwmon/lm73.c @@ -124,11 +124,11 @@ static int _dtt_init(int const sensor)  	/*  	 * Setup THIGH (upper-limit) and TLOW (lower-limit) registers  	 */ -	val = CFG_DTT_MAX_TEMP << 7; +	val = CONFIG_SYS_DTT_MAX_TEMP << 7;  	if (dtt_write(sensor, DTT_TEMP_HIGH, val))  		return -1; -	val = CFG_DTT_MIN_TEMP << 7; +	val = CONFIG_SYS_DTT_MIN_TEMP << 7;  	if (dtt_write(sensor, DTT_TEMP_LOW, val))  		return -1;  	/* |