mirror of
https://github.com/lm-sensors/lm-sensors
synced 2025-08-31 14:25:39 +00:00
(mds) Fix detection for as99127f (hopefully)
git-svn-id: http://lm-sensors.org/svn/lm-sensors/trunk@620 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
@@ -750,7 +750,7 @@ int w83781d_detect(struct i2c_adapter *adapter, int address,
|
||||
kind = w83783s;
|
||||
else if (val1 == 0x20 && vendid == winbond)
|
||||
kind = w83627hf;
|
||||
else if (val1 == 0x20 && vendid == asus && !is_isa)
|
||||
else if (val1 == 0x30 && vendid == asus && !is_isa)
|
||||
kind = as99127f;
|
||||
else {
|
||||
if (kind == 0)
|
||||
|
@@ -1307,7 +1307,7 @@ sub w83781d_detect
|
||||
return if $chip == 1 and $reg1 != 0x30;
|
||||
return if $chip == 2 and $reg1 != 0x40;
|
||||
return if $chip == 3 and $reg1 != 0x20;
|
||||
return if $chip == 4 and $reg1 != 0x20;
|
||||
return if $chip == 4 and $reg1 != 0x30;
|
||||
$reg1 = i2c_smbus_read_byte_data($file,0x4a);
|
||||
@res = (8);
|
||||
push @res, ($reg1 & 0x07) + 0x48 unless $reg1 & 0x08;
|
||||
|
Reference in New Issue
Block a user