diff options
author | Michal Simek <monstr@monstr.eu> | 2008-07-11 11:50:53 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-07-13 15:26:18 +0200 |
commit | 6ecbb45bb027e90c19d63b48e7b0c05acc1a87c0 (patch) | |
tree | db647af285d1d0fedc4dd29d88a8a9cf9fa97156 /drivers/hwmon/lm81.c | |
parent | c78fce699c7ff467ecd841da6a79f065180bf578 (diff) |
hwmon: Cleaning hwmon devices
Clean Makefile
Move device specific values to driver for better reading
Signed-off-by: Michal Simek <monstr@monstr.eu>
Acked-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'drivers/hwmon/lm81.c')
-rw-r--r-- | drivers/hwmon/lm81.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/hwmon/lm81.c b/drivers/hwmon/lm81.c index 03bc53d58..9349eb6ff 100644 --- a/drivers/hwmon/lm81.c +++ b/drivers/hwmon/lm81.c @@ -32,7 +32,6 @@ #include <common.h> -#ifdef CONFIG_DTT_LM81 #if !defined(CFG_EEPROM_PAGE_WRITE_ENABLE) || \ (CFG_EEPROM_PAGE_WRITE_BITS < 1) # error "CFG_EEPROM_PAGE_WRITE_ENABLE must be defined and CFG_EEPROM_PAGE_WRITE_BITS must be greater than 1 to use CONFIG_DTT_LM81" @@ -45,6 +44,11 @@ * Device code */ #define DTT_I2C_DEV_CODE 0x2c /* ON Semi's LM81 device */ +#define DTT_READ_TEMP 0x27 +#define DTT_CONFIG_TEMP 0x4b +#define DTT_TEMP_MAX 0x39 +#define DTT_TEMP_HYST 0x3a +#define DTT_CONFIG 0x40 int dtt_read(int sensor, int reg) { @@ -144,5 +148,3 @@ int dtt_get_temp(int sensor) return (TEMP_FROM_REG((val << 1) + ((tmpcnf & 0x80) >> 7))) / 10; } /* dtt_get_temp() */ - -#endif /* CONFIG_DTT_LM81 */ |