]> git.baikalelectronics.ru Git - kernel.git/commit
ACPI / scan: Follow priorities of IDs when matching scan handlers
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>
Wed, 6 Feb 2013 12:05:22 +0000 (13:05 +0100)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Wed, 13 Feb 2013 12:41:38 +0000 (13:41 +0100)
commit2d121fa7c7f77dc8f9a9719ec464c5220b6b1b62
tree292ec2771ebf354cd096f7396f06cd12d2806f9b
parent7f751cbfa773b03e292c4fb538d377cfcd37ec28
ACPI / scan: Follow priorities of IDs when matching scan handlers

The IDs of ACPI device nodes stored in their pnp.ids member arrays
are sorted by decreasing priority (i.e. the highest-priority ID is
the first entry).  This means that when matching scan handlers to
device nodes, the namespace scanning code should walk the list of
scan handlers for each device node ID instead of walking the list
of device node IDs for each handler (the latter causes the first
handler matching any of the device node IDs to be chosen, although
there may be another handler matching an ID of a higher priority
which should be preferred).  Make the code follow this observation.

This change has been suggested and justified by Toshi Kani.

Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Acked-by: Toshi Kani <toshi.kani@hp.com>
drivers/acpi/scan.c