提交 6f092803 编写于 作者: L Linus Torvalds

Merge tag 'pm+acpi-3.16-rc8' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm

Pull ACPI fix from Rafael Wysocki:
 "One commit that fixes a problem causing PNP devices to be associated
  with wrong ACPI device objects sometimes during device enumeration due
  to an incorrect check in a matching function.

  That problem was uncovered by the ACPI device enumeration rework in
  3.14"

* tag 'pm+acpi-3.16-rc8' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
  ACPI / PNP: Fix acpi_pnp_match()
...@@ -319,8 +319,7 @@ static int __init acpi_pnp_match(struct device *dev, void *_pnp) ...@@ -319,8 +319,7 @@ static int __init acpi_pnp_match(struct device *dev, void *_pnp)
struct pnp_dev *pnp = _pnp; struct pnp_dev *pnp = _pnp;
/* true means it matched */ /* true means it matched */
return !acpi->physical_node_count return pnp->data == acpi;
&& compare_pnp_id(pnp->id, acpi_device_hid(acpi));
} }
static struct acpi_device * __init acpi_pnp_find_companion(struct device *dev) static struct acpi_device * __init acpi_pnp_find_companion(struct device *dev)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册