diff options
author | Grant Likely <grant.likely@secretlab.ca> | 2009-08-25 16:07:02 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2009-08-28 00:24:14 -0400 |
commit | ae14e13a4c8bb091dfd5606fd76c9cd272090ab7 (patch) | |
tree | add3c1539d39f7f9b5fec665acf98db789f9a9fd /arch/powerpc | |
parent | bb1af71ecbfdbecbe9f7e43f703da5840b76c2e4 (diff) |
powerpc/pci: Remove dead checks for CONFIG_PPC_OF
PPC_OF is always selected for arch/powerpc. This patch removes the stale
#defines
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Acked-by: Stephen Rothwell <sfr@canb.auug.org.au>
Acked-by: Kumar Gala <galak@kernel.crashing.org>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/kernel/pci-common.c | 8 | ||||
-rw-r--r-- | arch/powerpc/kernel/pci_32.c | 9 |
2 files changed, 0 insertions, 17 deletions
diff --git a/arch/powerpc/kernel/pci-common.c b/arch/powerpc/kernel/pci-common.c index 7585f1fc26db..158a78ae6341 100644 --- a/arch/powerpc/kernel/pci-common.c +++ b/arch/powerpc/kernel/pci-common.c | |||
@@ -176,8 +176,6 @@ int pci_domain_nr(struct pci_bus *bus) | |||
176 | } | 176 | } |
177 | EXPORT_SYMBOL(pci_domain_nr); | 177 | EXPORT_SYMBOL(pci_domain_nr); |
178 | 178 | ||
179 | #ifdef CONFIG_PPC_OF | ||
180 | |||
181 | /* This routine is meant to be used early during boot, when the | 179 | /* This routine is meant to be used early during boot, when the |
182 | * PCI bus numbers have not yet been assigned, and you need to | 180 | * PCI bus numbers have not yet been assigned, and you need to |
183 | * issue PCI config cycles to an OF device. | 181 | * issue PCI config cycles to an OF device. |
@@ -210,17 +208,11 @@ static ssize_t pci_show_devspec(struct device *dev, | |||
210 | return sprintf(buf, "%s", np->full_name); | 208 | return sprintf(buf, "%s", np->full_name); |
211 | } | 209 | } |
212 | static DEVICE_ATTR(devspec, S_IRUGO, pci_show_devspec, NULL); | 210 | static DEVICE_ATTR(devspec, S_IRUGO, pci_show_devspec, NULL); |
213 | #endif /* CONFIG_PPC_OF */ | ||
214 | 211 | ||
215 | /* Add sysfs properties */ | 212 | /* Add sysfs properties */ |
216 | int pcibios_add_platform_entries(struct pci_dev *pdev) | 213 | int pcibios_add_platform_entries(struct pci_dev *pdev) |
217 | { | 214 | { |
218 | #ifdef CONFIG_PPC_OF | ||
219 | return device_create_file(&pdev->dev, &dev_attr_devspec); | 215 | return device_create_file(&pdev->dev, &dev_attr_devspec); |
220 | #else | ||
221 | return 0; | ||
222 | #endif /* CONFIG_PPC_OF */ | ||
223 | |||
224 | } | 216 | } |
225 | 217 | ||
226 | char __devinit *pcibios_setup(char *str) | 218 | char __devinit *pcibios_setup(char *str) |
diff --git a/arch/powerpc/kernel/pci_32.c b/arch/powerpc/kernel/pci_32.c index 3ae1c666ff92..1e807fe7ad2c 100644 --- a/arch/powerpc/kernel/pci_32.c +++ b/arch/powerpc/kernel/pci_32.c | |||
@@ -34,9 +34,7 @@ int pcibios_assign_bus_offset = 1; | |||
34 | void pcibios_make_OF_bus_map(void); | 34 | void pcibios_make_OF_bus_map(void); |
35 | 35 | ||
36 | static void fixup_cpc710_pci64(struct pci_dev* dev); | 36 | static void fixup_cpc710_pci64(struct pci_dev* dev); |
37 | #ifdef CONFIG_PPC_OF | ||
38 | static u8* pci_to_OF_bus_map; | 37 | static u8* pci_to_OF_bus_map; |
39 | #endif | ||
40 | 38 | ||
41 | /* By default, we don't re-assign bus numbers. We do this only on | 39 | /* By default, we don't re-assign bus numbers. We do this only on |
42 | * some pmacs | 40 | * some pmacs |
@@ -83,7 +81,6 @@ fixup_cpc710_pci64(struct pci_dev* dev) | |||
83 | } | 81 | } |
84 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CPC710_PCI64, fixup_cpc710_pci64); | 82 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CPC710_PCI64, fixup_cpc710_pci64); |
85 | 83 | ||
86 | #ifdef CONFIG_PPC_OF | ||
87 | /* | 84 | /* |
88 | * Functions below are used on OpenFirmware machines. | 85 | * Functions below are used on OpenFirmware machines. |
89 | */ | 86 | */ |
@@ -357,12 +354,6 @@ pci_create_OF_bus_map(void) | |||
357 | } | 354 | } |
358 | } | 355 | } |
359 | 356 | ||
360 | #else /* CONFIG_PPC_OF */ | ||
361 | void pcibios_make_OF_bus_map(void) | ||
362 | { | ||
363 | } | ||
364 | #endif /* CONFIG_PPC_OF */ | ||
365 | |||
366 | static void __devinit pcibios_scan_phb(struct pci_controller *hose) | 357 | static void __devinit pcibios_scan_phb(struct pci_controller *hose) |
367 | { | 358 | { |
368 | struct pci_bus *bus; | 359 | struct pci_bus *bus; |