Commit 40827cf3 authored by Adrian Bunk's avatar Adrian Bunk Committed by Greg Kroah-Hartman

[PATCH] PCI: arch/i386/pci/: make some code static

The patch below makes some needlessly global code static.
Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
Signed-off-by: default avatarGreg Kroah-Hartman <greg@kroah.com>
parent 354ddfe0
...@@ -282,7 +282,7 @@ static int quirk_pcie_aspm_write(struct pci_bus *bus, unsigned int devfn, int wh ...@@ -282,7 +282,7 @@ static int quirk_pcie_aspm_write(struct pci_bus *bus, unsigned int devfn, int wh
return raw_pci_ops->write(0, bus->number, devfn, where, size, value); return raw_pci_ops->write(0, bus->number, devfn, where, size, value);
} }
struct pci_ops quirk_pcie_aspm_ops = { static struct pci_ops quirk_pcie_aspm_ops = {
.read = quirk_pcie_aspm_read, .read = quirk_pcie_aspm_read,
.write = quirk_pcie_aspm_write, .write = quirk_pcie_aspm_write,
}; };
...@@ -295,7 +295,7 @@ struct pci_ops quirk_pcie_aspm_ops = { ...@@ -295,7 +295,7 @@ struct pci_ops quirk_pcie_aspm_ops = {
* the root port in an array for fast indexing. Replace the bus ops * the root port in an array for fast indexing. Replace the bus ops
* with the modified one. * with the modified one.
*/ */
void pcie_rootport_aspm_quirk(struct pci_dev *pdev) static void pcie_rootport_aspm_quirk(struct pci_dev *pdev)
{ {
int cap_base, i; int cap_base, i;
struct pci_bus *pbus; struct pci_bus *pbus;
......
...@@ -29,6 +29,8 @@ static int acer_tm360_irqrouting; ...@@ -29,6 +29,8 @@ static int acer_tm360_irqrouting;
static struct irq_routing_table *pirq_table; static struct irq_routing_table *pirq_table;
static int pirq_enable_irq(struct pci_dev *dev);
/* /*
* Never use: 0, 1, 2 (timer, keyboard, and cascade) * Never use: 0, 1, 2 (timer, keyboard, and cascade)
* Avoid using: 13, 14 and 15 (FP error and IDE). * Avoid using: 13, 14 and 15 (FP error and IDE).
...@@ -1019,7 +1021,7 @@ void pcibios_penalize_isa_irq(int irq) ...@@ -1019,7 +1021,7 @@ void pcibios_penalize_isa_irq(int irq)
pirq_penalize_isa_irq(irq); pirq_penalize_isa_irq(irq);
} }
int pirq_enable_irq(struct pci_dev *dev) static int pirq_enable_irq(struct pci_dev *dev)
{ {
u8 pin; u8 pin;
extern int interrupt_line_quirk; extern int interrupt_line_quirk;
......
...@@ -71,6 +71,4 @@ extern unsigned int pcibios_irq_mask; ...@@ -71,6 +71,4 @@ extern unsigned int pcibios_irq_mask;
extern int pcibios_scanned; extern int pcibios_scanned;
extern spinlock_t pci_config_lock; extern spinlock_t pci_config_lock;
int pirq_enable_irq(struct pci_dev *dev);
extern int (*pcibios_enable_irq)(struct pci_dev *dev); extern int (*pcibios_enable_irq)(struct pci_dev *dev);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment