fix detection of 3114 chipset

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@18812 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Marcus Overhagen 2006-09-11 22:08:59 +00:00
parent 329dab53e0
commit 7806a9c1f8

View File

@ -140,7 +140,7 @@ controller_supports(device_node_handle parent, bool *_noConnection)
// check, whether bus, vendor and device ID match
if (strcmp(bus, "pci") != 0
|| (vendorID != 0x1095)
|| (deviceID != 0x3112 && deviceID != 3114)) {
|| (deviceID != 0x3112 && deviceID != 0x3114)) {
free(bus);
return 0.0;
}