diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2007-08-15 06:58:23 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-08-16 21:02:06 -0400 |
commit | 750d1d1ca1d2e94e15393927fd3c30222d1c5203 (patch) | |
tree | 6180fe206f59929971e2a2a7ac37e1fb9ec5bc12 /arch | |
parent | 124d795d16b018b054956c9be561f889acf95ac4 (diff) |
[POWERPC] Fix section mismatch in pasemi/iommu.c
These functions are only called by __init functions.
WARNING: vmlinux.o(.text+0x56aa0): Section mismatch: reference to .init.text:.lmb_alloc (between '.iob_init' and '.iommu_init_early_pasemi')
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Acked-by: Olof Johansson <olof@lixom.net>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/platforms/pasemi/iommu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/platforms/pasemi/iommu.c b/arch/powerpc/platforms/pasemi/iommu.c index f33b21b9f5d4..c910ec9c2bdf 100644 --- a/arch/powerpc/platforms/pasemi/iommu.c +++ b/arch/powerpc/platforms/pasemi/iommu.c | |||
@@ -187,7 +187,7 @@ static void pci_dma_dev_setup_pasemi(struct pci_dev *dev) | |||
187 | static void pci_dma_bus_setup_null(struct pci_bus *b) { } | 187 | static void pci_dma_bus_setup_null(struct pci_bus *b) { } |
188 | static void pci_dma_dev_setup_null(struct pci_dev *d) { } | 188 | static void pci_dma_dev_setup_null(struct pci_dev *d) { } |
189 | 189 | ||
190 | int iob_init(struct device_node *dn) | 190 | int __init iob_init(struct device_node *dn) |
191 | { | 191 | { |
192 | unsigned long tmp; | 192 | unsigned long tmp; |
193 | u32 regword; | 193 | u32 regword; |
@@ -233,7 +233,7 @@ int iob_init(struct device_node *dn) | |||
233 | 233 | ||
234 | 234 | ||
235 | /* These are called very early. */ | 235 | /* These are called very early. */ |
236 | void iommu_init_early_pasemi(void) | 236 | void __init iommu_init_early_pasemi(void) |
237 | { | 237 | { |
238 | int iommu_off; | 238 | int iommu_off; |
239 | 239 | ||