Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 2673
b: refs/heads/master
c: 4e470aa
h: refs/heads/master
i:
  2671: a4260a8
v: v3
  • Loading branch information
Evgeniy Polyakov authored and Greg Kroah-Hartman committed Jun 22, 2005
1 parent 5b1bba3 commit 43964ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c7b2b2a723174d22a743180d5367f0028226031b
refs/heads/master: 4e470aa9642d49230bcdfbb393cf5a81da333aba
6 changes: 1 addition & 5 deletions trunk/drivers/w1/w1_therm.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ static struct w1_family w1_therm_family_DS1822 = {

struct w1_therm_family_converter
{
u8 fid;
u8 broken;
u16 reserved;
struct w1_family *f;
Expand All @@ -78,17 +77,14 @@ static inline int w1_DS18S20_convert_temp(u8 rom[9]);

static struct w1_therm_family_converter w1_therm_families[] = {
{
.fid = W1_THERM_DS18S20,
.f = &w1_therm_family_DS18S20,
.convert = w1_DS18S20_convert_temp
},
{
.fid = W1_THERM_DS1822,
.f = &w1_therm_family_DS1822,
.convert = w1_DS18B20_convert_temp
},
{
.fid = W1_THERM_DS18B20,
.f = &w1_therm_family_DS18B20,
.convert = w1_DS18B20_convert_temp
},
Expand Down Expand Up @@ -133,7 +129,7 @@ static inline int w1_convert_temp(u8 rom[9], u8 fid)
int i;

for (i=0; i<sizeof(w1_therm_families)/sizeof(w1_therm_families[0]); ++i)
if (w1_therm_families[i].fid == fid)
if (w1_therm_families[i].f->fid == fid)
return w1_therm_families[i].convert(rom);

return 0;
Expand Down

0 comments on commit 43964ab

Please sign in to comment.