aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86
diff options
context:
space:
mode:
authorGlauber Costa <gcosta@redhat.com>2008-03-25 17:36:22 -0400
committerIngo Molnar <mingo@elte.hu>2008-04-19 13:19:56 -0400
commit0cb0ae68323657663e4e8c0c1ce82a5af6621bbb (patch)
tree543d3f18b5239d73b12e36af750c62c6e8b2733d /arch/x86
parent22456b97148be300e25e9cb97244656775972475 (diff)
x86: move dma_unmap_single to common header
i386 base does not need it, so it gets an empty function. Signed-off-by: Glauber Costa <gcosta@redhat.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86')
-rw-r--r--arch/x86/kernel/pci-base_32.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/kernel/pci-base_32.c b/arch/x86/kernel/pci-base_32.c
index b613d735f76c..a8a7c7f2d23f 100644
--- a/arch/x86/kernel/pci-base_32.c
+++ b/arch/x86/kernel/pci-base_32.c
@@ -14,6 +14,7 @@ static dma_addr_t pci32_map_single(struct device *dev, void *ptr,
14 14
15static const struct dma_mapping_ops pci32_dma_ops = { 15static const struct dma_mapping_ops pci32_dma_ops = {
16 .map_single = pci32_map_single, 16 .map_single = pci32_map_single,
17 .unmap_single = NULL,
17}; 18};
18 19
19const struct dma_mapping_ops *dma_ops = &pci32_dma_ops; 20const struct dma_mapping_ops *dma_ops = &pci32_dma_ops;