Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 274121
b: refs/heads/master
c: bfa02b0
h: refs/heads/master
i:
  274119: b482906
v: v3
  • Loading branch information
Guenter Roeck authored and Jean Delvare committed Nov 6, 2011
1 parent 2e49404 commit d00357b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 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: 2aba6cac2a84f3b80e11a680c34d55e7739b474d
refs/heads/master: bfa02b0da66965caf46e441270af87edda4fea14
9 changes: 6 additions & 3 deletions trunk/drivers/hwmon/w83627ehf.c
Original file line number Diff line number Diff line change
Expand Up @@ -1835,12 +1835,15 @@ static inline void __devinit w83627ehf_init_device(struct w83627ehf_data *data,
diode = 0x70;
}
for (i = 0; i < 3; i++) {
const char *label = data->temp_label[data->temp_src[i]];
const char *label = NULL;

if (data->temp_label)
label = data->temp_label[data->temp_src[i]];

/* Digital source overrides analog type */
if (strncmp(label, "PECI", 4) == 0)
if (label && strncmp(label, "PECI", 4) == 0)
data->temp_type[i] = 6;
else if (strncmp(label, "AMD", 3) == 0)
else if (label && strncmp(label, "AMD", 3) == 0)
data->temp_type[i] = 5;
else if ((tmp & (0x02 << i)))
data->temp_type[i] = (diode & (0x10 << i)) ? 1 : 3;
Expand Down

0 comments on commit d00357b

Please sign in to comment.