diff options
author | Bjorn Helgaas <bjorn.helgaas@hp.com> | 2008-12-08 21:30:31 -0700 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2008-12-30 21:20:23 -0500 |
commit | f748bafa3ca1fb056e63afdeecacc1c68d8104df (patch) | |
tree | d1c49d7895eb0c7cb8226e72119b3043950f11e6 /include/linux/acpi.h | |
parent | c13f889a24e6ced50abb582dab3ee4b7c79b038e (diff) | |
download | linux-3.10-f748bafa3ca1fb056e63afdeecacc1c68d8104df.tar.gz linux-3.10-f748bafa3ca1fb056e63afdeecacc1c68d8104df.tar.bz2 linux-3.10-f748bafa3ca1fb056e63afdeecacc1c68d8104df.zip |
ACPI: PCI: move struct acpi_prt_entry declaration out of public header file
The struct acpi_prt_entry is used only in pci_irq.c, so there's no
need for the declaration to be public. This patch moves it into
pci_irq.c.
Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'include/linux/acpi.h')
-rw-r--r-- | include/linux/acpi.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/include/linux/acpi.h b/include/linux/acpi.h index fba8051fb29..813f937b3ab 100644 --- a/include/linux/acpi.h +++ b/include/linux/acpi.h @@ -131,22 +131,6 @@ extern int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity); */ void acpi_unregister_gsi (u32 gsi); -struct acpi_prt_entry { - struct list_head node; - struct acpi_pci_id id; - u8 pin; - struct { - acpi_handle handle; - u32 index; - } link; - u32 irq; -}; - -struct acpi_prt_list { - int count; - struct list_head entries; -}; - struct pci_dev; int acpi_pci_irq_enable (struct pci_dev *dev); |