From 7806a9c1f87e820ad1f6e56cfc1adfd2ae7a3cb9 Mon Sep 17 00:00:00 2001 From: Marcus Overhagen Date: Mon, 11 Sep 2006 22:08:59 +0000 Subject: [PATCH] fix detection of 3114 chipset git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@18812 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- .../kernel/busses/ide/silicon_image_3112/silicon_image_3112.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/add-ons/kernel/busses/ide/silicon_image_3112/silicon_image_3112.c b/src/add-ons/kernel/busses/ide/silicon_image_3112/silicon_image_3112.c index 7cfefb0d06..024ca24796 100644 --- a/src/add-ons/kernel/busses/ide/silicon_image_3112/silicon_image_3112.c +++ b/src/add-ons/kernel/busses/ide/silicon_image_3112/silicon_image_3112.c @@ -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; }