2
0
mirror of https://github.com/lm-sensors/lm-sensors synced 2025-08-31 14:25:39 +00:00

One less level of indirection for cpu_ids detection functions.

git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5465 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
Jean Delvare
2008-11-30 10:25:11 +00:00
parent 977a740bb4
commit 1664a9eb0f

View File

@@ -1672,35 +1672,35 @@ use vars qw(@cpu_ids);
{ {
name => "Silicon Integrated Systems SIS5595", name => "Silicon Integrated Systems SIS5595",
driver => "sis5595", driver => "sis5595",
detect => sub { sis5595_pci_detect(); }, detect => \&sis5595_pci_detect,
}, { }, {
name => "VIA VT82C686 Integrated Sensors", name => "VIA VT82C686 Integrated Sensors",
driver => "via686a", driver => "via686a",
detect => sub { via686a_pci_detect(); }, detect => \&via686a_pci_detect,
}, { }, {
name => "VIA VT8231 Integrated Sensors", name => "VIA VT8231 Integrated Sensors",
driver => "vt8231", driver => "vt8231",
detect => sub { via8231_pci_detect(); }, detect => \&via8231_pci_detect,
}, { }, {
name => "AMD K8 thermal sensors", name => "AMD K8 thermal sensors",
driver => "k8temp", driver => "k8temp",
detect => sub { k8temp_pci_detect(); }, detect => \&k8temp_pci_detect,
}, { }, {
name => "AMD K10 thermal sensors", name => "AMD K10 thermal sensors",
driver => "to-be-written", driver => "to-be-written",
detect => sub { k10temp_pci_detect(); }, detect => \&k10temp_pci_detect,
}, { }, {
name => "Intel Core family thermal sensor", name => "Intel Core family thermal sensor",
driver => "coretemp", driver => "coretemp",
detect => sub { coretemp_detect(); }, detect => \&coretemp_detect,
}, { }, {
name => "Intel AMB FB-DIMM thermal sensor", name => "Intel AMB FB-DIMM thermal sensor",
driver => "i5k_amb", driver => "i5k_amb",
detect => sub { intel_amb_detect(); }, detect => \&intel_amb_detect,
}, { }, {
name => "VIA C7 thermal and voltage sensors", name => "VIA C7 thermal and voltage sensors",
driver => "c7temp", driver => "c7temp",
detect => sub { c7temp_detect(); }, detect => \&c7temp_detect,
} }
); );