Commit f7b1371e authored by Christian Glindkamp's avatar Christian Glindkamp Committed by Linus Torvalds

drivers/w1/slaves/w1_therm.c: add support for DS28EA00

Signed-off-by: default avatarChristian Glindkamp <christian.glindkamp@taskit.de>
Cc: Evgeniy Polyakov <johnpol@2ka.mipt.ru>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent c958474b
...@@ -86,6 +86,11 @@ static struct w1_family w1_therm_family_DS1822 = { ...@@ -86,6 +86,11 @@ static struct w1_family w1_therm_family_DS1822 = {
.fops = &w1_therm_fops, .fops = &w1_therm_fops,
}; };
static struct w1_family w1_therm_family_DS28EA00 = {
.fid = W1_THERM_DS28EA00,
.fops = &w1_therm_fops,
};
struct w1_therm_family_converter struct w1_therm_family_converter
{ {
u8 broken; u8 broken;
...@@ -111,6 +116,10 @@ static struct w1_therm_family_converter w1_therm_families[] = { ...@@ -111,6 +116,10 @@ static struct w1_therm_family_converter w1_therm_families[] = {
.f = &w1_therm_family_DS18B20, .f = &w1_therm_family_DS18B20,
.convert = w1_DS18B20_convert_temp .convert = w1_DS18B20_convert_temp
}, },
{
.f = &w1_therm_family_DS28EA00,
.convert = w1_DS18B20_convert_temp
},
}; };
static inline int w1_DS18B20_convert_temp(u8 rom[9]) static inline int w1_DS18B20_convert_temp(u8 rom[9])
......
...@@ -38,6 +38,7 @@ ...@@ -38,6 +38,7 @@
#define W1_EEPROM_DS2431 0x2D #define W1_EEPROM_DS2431 0x2D
#define W1_FAMILY_DS2760 0x30 #define W1_FAMILY_DS2760 0x30
#define W1_FAMILY_DS2780 0x32 #define W1_FAMILY_DS2780 0x32
#define W1_THERM_DS28EA00 0x42
#define MAXNAMELEN 32 #define MAXNAMELEN 32
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment