Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 128103
b: refs/heads/master
c: f748baf
h: refs/heads/master
i:
  128101: 172ef4c
  128099: 25311fb
  128095: a2db82d
v: v3
  • Loading branch information
Bjorn Helgaas authored and Len Brown committed Dec 31, 2008
1 parent 0238233 commit e4d6714
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c13f889a24e6ced50abb582dab3ee4b7c79b038e
refs/heads/master: f748bafa3ca1fb056e63afdeecacc1c68d8104df
16 changes: 16 additions & 0 deletions trunk/drivers/acpi/pci_irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,22 @@
#define _COMPONENT ACPI_PCI_COMPONENT
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 DEFINE_SPINLOCK(acpi_prt_lock);

Expand Down
16 changes: 0 additions & 16 deletions trunk/include/linux/acpi.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit e4d6714

Please sign in to comment.