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>
This commit is contained in:
parent
c13f889a24
commit
f748bafa3c
2 changed files with 16 additions and 16 deletions
|
@ -41,6 +41,22 @@
|
||||||
#define _COMPONENT ACPI_PCI_COMPONENT
|
#define _COMPONENT ACPI_PCI_COMPONENT
|
||||||
ACPI_MODULE_NAME("pci_irq");
|
ACPI_MODULE_NAME("pci_irq");
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
|
||||||
static struct acpi_prt_list acpi_prt;
|
static struct acpi_prt_list acpi_prt;
|
||||||
static DEFINE_SPINLOCK(acpi_prt_lock);
|
static DEFINE_SPINLOCK(acpi_prt_lock);
|
||||||
|
|
||||||
|
|
|
@ -131,22 +131,6 @@ extern int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity);
|
||||||
*/
|
*/
|
||||||
void acpi_unregister_gsi (u32 gsi);
|
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;
|
struct pci_dev;
|
||||||
|
|
||||||
int acpi_pci_irq_enable (struct pci_dev *dev);
|
int acpi_pci_irq_enable (struct pci_dev *dev);
|
||||||
|
|
Loading…
Reference in a new issue