diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2009-11-11 10:03:28 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-11-11 10:51:18 -0500 |
commit | b18485e7acfe1a634615d1c628ef644c0d58d472 (patch) | |
tree | 9b44e47b748f9377d88b960f8bdc6712b3c3046d /arch/x86/kernel/pci-swiotlb.c | |
parent | b4941a9a606f0131559cc040b64e8437ac7b32c5 (diff) |
swiotlb: Remove the swiotlb variable usage
POWERPC doesn't expect it to be used.
This fixes the linux-next build failure reported by
Stephen Rothwell:
lib/swiotlb.c: In function 'setup_io_tlb_npages':
lib/swiotlb.c:114: error: 'swiotlb' undeclared (first use in this function)
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Cc: peterz@infradead.org
LKML-Reference: <20091112000258F.fujita.tomonori@lab.ntt.co.jp>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/pci-swiotlb.c')
-rw-r--r-- | arch/x86/kernel/pci-swiotlb.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/arch/x86/kernel/pci-swiotlb.c b/arch/x86/kernel/pci-swiotlb.c index 17ce4221bd03..a6e5d0ffa3a7 100644 --- a/arch/x86/kernel/pci-swiotlb.c +++ b/arch/x86/kernel/pci-swiotlb.c | |||
@@ -42,16 +42,27 @@ static struct dma_map_ops swiotlb_dma_ops = { | |||
42 | .dma_supported = NULL, | 42 | .dma_supported = NULL, |
43 | }; | 43 | }; |
44 | 44 | ||
45 | void __init pci_swiotlb_init(void) | 45 | /* |
46 | * pci_swiotlb_init - initialize swiotlb if necessary | ||
47 | * | ||
48 | * This returns non-zero if we are forced to use swiotlb (by the boot | ||
49 | * option). | ||
50 | */ | ||
51 | int __init pci_swiotlb_init(void) | ||
46 | { | 52 | { |
47 | /* don't initialize swiotlb if iommu=off (no_iommu=1) */ | 53 | /* don't initialize swiotlb if iommu=off (no_iommu=1) */ |
48 | #ifdef CONFIG_X86_64 | 54 | #ifdef CONFIG_X86_64 |
49 | if (!no_iommu && max_pfn > MAX_DMA32_PFN) | 55 | if (!no_iommu && max_pfn > MAX_DMA32_PFN) |
50 | swiotlb = 1; | 56 | swiotlb = 1; |
51 | #endif | 57 | #endif |
58 | if (swiotlb_force) | ||
59 | swiotlb = 1; | ||
60 | |||
52 | if (swiotlb) { | 61 | if (swiotlb) { |
53 | swiotlb_init(0); | 62 | swiotlb_init(0); |
54 | dma_ops = &swiotlb_dma_ops; | 63 | dma_ops = &swiotlb_dma_ops; |
55 | } else | 64 | } else |
56 | dma_ops = &nommu_dma_ops; | 65 | dma_ops = &nommu_dma_ops; |
66 | |||
67 | return swiotlb_force; | ||
57 | } | 68 | } |