mirror of
https://github.com/lm-sensors/lm-sensors
synced 2025-09-02 23:35:57 +00:00
Reindent @cpu_ids.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5464 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
@@ -40,7 +40,7 @@ foreach ('/usr/sbin', '/usr/local/sbin', '/sbin') {
|
|||||||
|
|
||||||
use constant NO_CACHE => 1;
|
use constant NO_CACHE => 1;
|
||||||
use vars qw(@pci_adapters @chip_ids @non_hwmon_chip_ids $i2c_addresses_to_scan
|
use vars qw(@pci_adapters @chip_ids @non_hwmon_chip_ids $i2c_addresses_to_scan
|
||||||
@cpu_ids $revision @i2c_byte_cache);
|
$revision @i2c_byte_cache);
|
||||||
|
|
||||||
$revision = '$Revision$ ($Date$)';
|
$revision = '$Revision$ ($Date$)';
|
||||||
$revision =~ s/\$\w+: (.*?) \$/$1/g;
|
$revision =~ s/\$\w+: (.*?) \$/$1/g;
|
||||||
@@ -1658,55 +1658,50 @@ use vars qw(@superio_ids_natsemi @superio_ids_smsc @superio_ids_smsc_ns
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
# Drivers for CPU embedded sensors
|
# Drivers for bridge, CPU and memory embedded sensors
|
||||||
# Each entry must have the following fields:
|
# Each entry must have the following fields:
|
||||||
# name: The CPU family name
|
# name: The device name
|
||||||
# driver: The driver name. Put "to-be-written" if no driver is available.
|
# driver: The driver name. Put "to-be-written" if no driver is available.
|
||||||
# detect: Detection callback function. No parameter will be passed to
|
# detect: Detection callback function. No parameter will be passed to
|
||||||
# this function, it must use global lists of PCI devices, CPU,
|
# this function, it must use global lists of PCI devices, CPU,
|
||||||
# etc. It must return a confidence value, undef if no supported
|
# etc. It must return a confidence value, undef if no supported
|
||||||
# CPU is found.
|
# CPU is found.
|
||||||
|
use vars qw(@cpu_ids);
|
||||||
|
|
||||||
@cpu_ids = (
|
@cpu_ids = (
|
||||||
{
|
{
|
||||||
name => "Silicon Integrated Systems SIS5595",
|
name => "Silicon Integrated Systems SIS5595",
|
||||||
driver => "sis5595",
|
driver => "sis5595",
|
||||||
detect => sub { sis5595_pci_detect(); },
|
detect => sub { sis5595_pci_detect(); },
|
||||||
},
|
}, {
|
||||||
{
|
name => "VIA VT82C686 Integrated Sensors",
|
||||||
name => "VIA VT82C686 Integrated Sensors",
|
driver => "via686a",
|
||||||
driver => "via686a",
|
detect => sub { via686a_pci_detect(); },
|
||||||
detect => sub { via686a_pci_detect(); },
|
}, {
|
||||||
},
|
name => "VIA VT8231 Integrated Sensors",
|
||||||
{
|
driver => "vt8231",
|
||||||
name => "VIA VT8231 Integrated Sensors",
|
detect => sub { via8231_pci_detect(); },
|
||||||
driver => "vt8231",
|
}, {
|
||||||
detect => sub { via8231_pci_detect(); },
|
name => "AMD K8 thermal sensors",
|
||||||
},
|
driver => "k8temp",
|
||||||
{
|
detect => sub { k8temp_pci_detect(); },
|
||||||
name => "AMD K8 thermal sensors",
|
}, {
|
||||||
driver => "k8temp",
|
name => "AMD K10 thermal sensors",
|
||||||
detect => sub { k8temp_pci_detect(); },
|
driver => "to-be-written",
|
||||||
},
|
detect => sub { k10temp_pci_detect(); },
|
||||||
{
|
}, {
|
||||||
name => "AMD K10 thermal sensors",
|
name => "Intel Core family thermal sensor",
|
||||||
driver => "to-be-written",
|
driver => "coretemp",
|
||||||
detect => sub { k10temp_pci_detect(); },
|
detect => sub { coretemp_detect(); },
|
||||||
},
|
}, {
|
||||||
{
|
name => "Intel AMB FB-DIMM thermal sensor",
|
||||||
name => "Intel Core family thermal sensor",
|
driver => "i5k_amb",
|
||||||
driver => "coretemp",
|
detect => sub { intel_amb_detect(); },
|
||||||
detect => sub { coretemp_detect(); },
|
}, {
|
||||||
},
|
name => "VIA C7 thermal and voltage sensors",
|
||||||
{
|
driver => "c7temp",
|
||||||
name => "Intel AMB FB-DIMM thermal sensor",
|
detect => sub { c7temp_detect(); },
|
||||||
driver => "i5k_amb",
|
}
|
||||||
detect => sub { intel_amb_detect(); },
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name => "VIA C7 thermal and voltage sensors",
|
|
||||||
driver => "c7temp",
|
|
||||||
detect => sub { c7temp_detect(); },
|
|
||||||
},
|
|
||||||
);
|
);
|
||||||
|
|
||||||
#######################
|
#######################
|
||||||
|
Reference in New Issue
Block a user