Commit dc752d54 authored by Rafael J. Wysocki's avatar Rafael J. Wysocki

Merge branch 'acpi-scan-fixes'

* acpi-scan-fixes:
  ACPI / scan: Prefer devices without _HID for _ADR matching
parents a71c9a1c fdad4e7a
...@@ -99,13 +99,13 @@ static int find_child_checks(struct acpi_device *adev, bool check_children) ...@@ -99,13 +99,13 @@ static int find_child_checks(struct acpi_device *adev, bool check_children)
return -ENODEV; return -ENODEV;
/* /*
* If the device has a _HID (or _CID) returning a valid ACPI/PNP * If the device has a _HID returning a valid ACPI/PNP device ID, it is
* device ID, it is better to make it look less attractive here, so that * better to make it look less attractive here, so that the other device
* the other device with the same _ADR value (that may not have a valid * with the same _ADR value (that may not have a valid device ID) can be
* device ID) can be matched going forward. [This means a second spec * matched going forward. [This means a second spec violation in a row,
* violation in a row, so whatever we do here is best effort anyway.] * so whatever we do here is best effort anyway.]
*/ */
return sta_present && list_empty(&adev->pnp.ids) ? return sta_present && !adev->pnp.type.platform_id ?
FIND_CHILD_MAX_SCORE : FIND_CHILD_MIN_SCORE; FIND_CHILD_MAX_SCORE : FIND_CHILD_MIN_SCORE;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment