2
0
mirror of https://github.com/lm-sensors/lm-sensors synced 2025-09-03 15:55:15 +00:00

As of kernel 2.6.28, alias detection is handled by kernel drivers

directly, so module options are no longer needed.


git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5432 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
Jean Delvare
2008-11-26 10:51:22 +00:00
parent 194cb93614
commit b3c97e6eb8
2 changed files with 11 additions and 6 deletions

View File

@@ -24,6 +24,7 @@ SVN-HEAD
Merge both GL518SM entries into one Merge both GL518SM entries into one
Complete GL520SM detection Complete GL520SM detection
Improve GL525SM detection a bit Improve GL525SM detection a bit
Let kernel 2.6.28 and later handle chips aliases
3.0.3 (2008-09-28) 3.0.3 (2008-09-28)
libsensors: Avoid namespace pollution libsensors: Avoid namespace pollution

View File

@@ -5249,12 +5249,16 @@ sub generate_modprobes
} }
# Handle aliases # Handle aliases
foreach $detection (@{$chip->{detected}}) { # As of kernel 2.6.28, alias detection is handled by kernel drivers
if (exists $detection->{i2c_driver} and # directly, so module options are no longer needed.
exists $detection->{isa_addr} and unless (kernel_version_at_least(2, 6, 28)) {
exists $i2c_adapters[$detection->{i2c_devnr}]->{nr_later}) { foreach $detection (@{$chip->{detected}}) {
push @optionlist, $i2c_adapters[$detection->{i2c_devnr}]->{nr_later}, if (exists $detection->{i2c_driver} and
$detection->{i2c_addr}; exists $detection->{isa_addr} and
exists $i2c_adapters[$detection->{i2c_devnr}]->{nr_later}) {
push @optionlist, $i2c_adapters[$detection->{i2c_devnr}]->{nr_later},
$detection->{i2c_addr};
}
} }
} }