aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci
diff options
context:
space:
mode:
authorEric W. Biederman <ebiederm@xmission.com>2007-01-28 14:47:52 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2007-02-07 18:50:08 -0500
commit1c659d61cfbd8dc3926688c1bbf12d80f4cfb5c2 (patch)
treea6ebfbd4a52bcf3e63a84e1ef04e5356c55e9e93 /drivers/pci
parent866a8c87c4e51046602387953bbef76992107bcb (diff)
msi: Remove attach_msi_entry.
The attach_msi_entry has been reduced to a single simple assignment, so for simplicity remove the abstraction and directory perform the assignment. Signed-off-by: Eric W. Biederman <ebiederm@xmission.com> Acked-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/pci')
-rw-r--r--drivers/pci/msi.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/drivers/pci/msi.c b/drivers/pci/msi.c
index 529113dc3e22..55fe83dfd77b 100644
--- a/drivers/pci/msi.c
+++ b/drivers/pci/msi.c
@@ -193,11 +193,6 @@ static struct msi_desc* alloc_msi_entry(void)
193 return entry; 193 return entry;
194} 194}
195 195
196static void attach_msi_entry(struct msi_desc *entry, int irq)
197{
198 msi_desc[irq] = entry;
199}
200
201static int create_msi_irq(void) 196static int create_msi_irq(void)
202{ 197{
203 struct msi_desc *entry; 198 struct msi_desc *entry;
@@ -491,7 +486,7 @@ static int msi_capability_init(struct pci_dev *dev)
491 } 486 }
492 487
493 dev->first_msi_irq = irq; 488 dev->first_msi_irq = irq;
494 attach_msi_entry(entry, irq); 489 msi_desc[irq] = entry;
495 /* Set MSI enabled bits */ 490 /* Set MSI enabled bits */
496 enable_msi_mode(dev, pos, PCI_CAP_ID_MSI); 491 enable_msi_mode(dev, pos, PCI_CAP_ID_MSI);
497 492
@@ -570,7 +565,7 @@ static int msix_capability_init(struct pci_dev *dev,
570 break; 565 break;
571 } 566 }
572 567
573 attach_msi_entry(entry, irq); 568 msi_desc[irq] = entry;
574 } 569 }
575 if (i != nvec) { 570 if (i != nvec) {
576 int avail = i - 1; 571 int avail = i - 1;