diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-06-18 01:31:03 +0300 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-07-28 18:10:30 +0900 |
commit | 175fb09f4a770fd542947e8c3f4e6dbf07debea9 (patch) | |
tree | bc81c0e350b78bd5dfa63ed6344eb928bba821f6 /arch | |
parent | 2b7bf930ae762d3124317e36f26a7567dc04e835 (diff) | |
download | linux-3.10-175fb09f4a770fd542947e8c3f4e6dbf07debea9.tar.gz linux-3.10-175fb09f4a770fd542947e8c3f4e6dbf07debea9.tar.bz2 linux-3.10-175fb09f4a770fd542947e8c3f4e6dbf07debea9.zip |
sh: make EARLY_PCI_OP's static
This patch makes the needlessly global EARLY_PCI_OP's static.
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sh/drivers/pci/pci-auto.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/drivers/pci/pci-auto.c b/arch/sh/drivers/pci/pci-auto.c index ea404704ace..cf48b12ee58 100644 --- a/arch/sh/drivers/pci/pci-auto.c +++ b/arch/sh/drivers/pci/pci-auto.c @@ -78,7 +78,7 @@ static struct pci_dev *fake_pci_dev(struct pci_channel *hose, } #define EARLY_PCI_OP(rw, size, type) \ -int early_##rw##_config_##size(struct pci_channel *hose, \ +static int early_##rw##_config_##size(struct pci_channel *hose, \ int top_bus, int bus, int devfn, int offset, type value) \ { \ return pci_##rw##_config_##size( \ |