diff options
author | Jiang Liu <jiang.liu@huawei.com> | 2012-09-18 02:19:49 -0400 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2012-09-24 17:29:40 -0400 |
commit | 8ee5bdf3e9c99808bf271aa5cc41d689e6d9d3eb (patch) | |
tree | 079476becf6c0791ff66db28a563eb2c8176f236 /include | |
parent | 059e4ba292c69cb400cda92fbd37f25d4eec564b (diff) |
PCI/ACPI: Use normal list for struct acpi_pci_driver
Use normal list for struct acpi_pci_driver to simplify code.
Signed-off-by: Jiang Liu <jiang.liu@huawei.com>
Signed-off-by: Yinghai Lu <yinghai@kernel.org>
Signed-off-by: Taku Izumi <izumi.taku@jp.fujitsu.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/acpi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/acpi.h b/include/linux/acpi.h index 3ad510b2528..a54cf8e512a 100644 --- a/include/linux/acpi.h +++ b/include/linux/acpi.h | |||
@@ -138,7 +138,7 @@ void acpi_penalize_isa_irq(int irq, int active); | |||
138 | void acpi_pci_irq_disable (struct pci_dev *dev); | 138 | void acpi_pci_irq_disable (struct pci_dev *dev); |
139 | 139 | ||
140 | struct acpi_pci_driver { | 140 | struct acpi_pci_driver { |
141 | struct acpi_pci_driver *next; | 141 | struct list_head node; |
142 | int (*add)(acpi_handle handle); | 142 | int (*add)(acpi_handle handle); |
143 | void (*remove)(acpi_handle handle); | 143 | void (*remove)(acpi_handle handle); |
144 | }; | 144 | }; |