Fix acpi_MatchHid() to check the compatibility ID's if the hardware ID

doesn't match.

Submitted by:	marcel
This commit is contained in:
John Baldwin 2003-12-26 15:42:13 +00:00
parent 8ae025dbda
commit c59c9a8e1c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=123867

View File

@ -1216,10 +1216,10 @@ acpi_MatchHid(device_t dev, char *hid)
return (FALSE);
devinfo = (ACPI_DEVICE_INFO *)buf.Pointer;
if ((devinfo->Valid & ACPI_VALID_HID) != 0) {
if (strcmp(hid, devinfo->HardwareId.Value) == 0)
if ((devinfo->Valid & ACPI_VALID_HID) != 0 &&
strcmp(hid, devinfo->HardwareId.Value) == 0)
ret = TRUE;
} else if ((devinfo->Valid & ACPI_VALID_CID) != 0) {
else if ((devinfo->Valid & ACPI_VALID_CID) != 0) {
for (i = 0; i < devinfo->CompatibilityId.Count; i++) {
if (strcmp(hid, devinfo->CompatibilityId.Id[i].Value) == 0) {
ret = TRUE;