mirror of
https://github.com/lm-sensors/lm-sensors
synced 2025-08-30 13:57:41 +00:00
add ali1535 detection. Same PCI ID as 15x3, but only the
correct module will actually load. git-svn-id: http://lm-sensors.org/svn/lm-sensors/trunk@1171 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
1
CHANGES
1
CHANGES
@@ -19,6 +19,7 @@ ask CVS about it:
|
|||||||
|
|
||||||
2.6.2 (2001????)
|
2.6.2 (2001????)
|
||||||
Module via686a: Make limit initializations reliable
|
Module via686a: Make limit initializations reliable
|
||||||
|
Program sensors-detect: Add ALI1535 detection
|
||||||
|
|
||||||
2.6.1 (20010830)
|
2.6.1 (20010830)
|
||||||
File BUGS: Updated
|
File BUGS: Updated
|
||||||
|
@@ -155,13 +155,24 @@ use vars qw(@pci_adapters @chip_ids @undetectable_adapters);
|
|||||||
procid => "Silicon Integrated Systems SIS730 (To be written - Do not use 5595 drivers)",
|
procid => "Silicon Integrated Systems SIS730 (To be written - Do not use 5595 drivers)",
|
||||||
match => sub { $_[0] =~ /dontmatchthis/ },
|
match => sub { $_[0] =~ /dontmatchthis/ },
|
||||||
} ,
|
} ,
|
||||||
|
#
|
||||||
|
# Both Ali chips below have same PCI ID. Can't be helped. Only one should load.
|
||||||
|
#
|
||||||
{
|
{
|
||||||
vendid => 0x10b9,
|
vendid => 0x10b9,
|
||||||
devid => 0x7101,
|
devid => 0x7101,
|
||||||
funcid => 0,
|
funcid => 0,
|
||||||
procid => "Acer Labs M7101",
|
procid => "Acer Labs 1533/1543",
|
||||||
driver => "i2c-ali15x3",
|
driver => "i2c-ali15x3",
|
||||||
match => sub { $_[0] =~ /^SMBus ALI15X3 adapter at [0-9,a-f]{4}/ },
|
match => sub { $_[0] =~ /^SMBus ALI15X3 adapter at/ },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
vendid => 0x10b9,
|
||||||
|
devid => 0x7101,
|
||||||
|
funcid => 0,
|
||||||
|
procid => "Acer Labs 1535",
|
||||||
|
driver => "i2c-ali1535",
|
||||||
|
match => sub { $_[0] =~ /^SMBus ALI1535 adapter at/ },
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
vendid => 0x106b,
|
vendid => 0x106b,
|
||||||
|
Reference in New Issue
Block a user