Changeset 4062
- Timestamp:
- 06/23/06 23:37:40 (2 years ago)
- Files:
-
- lm-sensors/trunk/CHANGES (modified) (1 diff)
- lm-sensors/trunk/prog/detect/sensors-detect (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/CHANGES
r4061 r4062 51 51 Handle the W83791D driver difference between kernels 52 52 Add nForce4 MCP04, MCP51 and MCP55 detection 53 Add AMD Geode devices detection 53 54 54 55 lm-sensors/trunk/prog/detect/sensors-detect
r4055 r4062 869 869 match => qr/^SMBus PIIX4 adapter at /, 870 870 } , 871 { 872 vendid => 0x100B, 873 devid => 0x0500, 874 procid => "SCx200 Bridge", 875 driver => "scx200_acb", 876 match => qr/^(NatSemi SCx200 ACCESS\.bus|SCx200 ACB\d+) /, 877 }, 878 { 879 vendid => 0x100B, 880 devid => 0x0510, 881 procid => "SC1100 Bridge", 882 driver => "scx200_acb", 883 match => qr/^(NatSemi SCx200 ACCESS\.bus|SCx200 ACB\d+) /, 884 }, 885 { 886 vendid => 0x100B, 887 devid => 0x002B, 888 procid => "CS5535 ISA bridge", 889 driver => "scx200_acb", 890 match => qr/^CS5535 ACB\d+ /, 891 }, 892 { 893 vendid => 0x1022, 894 devid => 0x2090, 895 procid => "CS5536 [Geode companion] ISA", 896 driver => "scx200_acb", 897 match => qr/^CS553[56] ACB\d+ /, 898 }, 871 899 ); 872 900 … … 2323 2351 if ($try->{vendid} == $device->{vendid} && 2324 2352 $try->{devid} == $device->{devid} && 2325 $try->{func} == $device->{func}) {2353 (!defined($try->{func}) || $try->{func} == $device->{func})) { 2326 2354 printf "Use driver `%s' for device %02x:%02x.%x: %s\n", 2327 2355 $try->{driver},
