aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/pci-dma.c
diff options
context:
space:
mode:
authorGlauber Costa <gcosta@redhat.com>2008-04-08 12:20:43 -0400
committerIngo Molnar <mingo@elte.hu>2008-04-19 13:19:57 -0400
commit459121c9ec1e6c5d701f6520f4170719ac008951 (patch)
tree5b0fd3dbc761647e8da7a2be103c797cce0a8621 /arch/x86/kernel/pci-dma.c
parent19e395afb44746ce7422a9eabcf883d5eec2bb80 (diff)
x86: introduce pci-dma.c
This patch introduces pci-dma.c, a common file for pci dma between i386 and x86_64. As a start, dma_set_mask() is the same between architectures, and is placed there. 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/kernel/pci-dma.c')
-rw-r--r--arch/x86/kernel/pci-dma.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/x86/kernel/pci-dma.c b/arch/x86/kernel/pci-dma.c
new file mode 100644
index 000000000000..f1c24d8e7942
--- /dev/null
+++ b/arch/x86/kernel/pci-dma.c
@@ -0,0 +1,14 @@
1#include <linux/dma-mapping.h>
2
3int dma_set_mask(struct device *dev, u64 mask)
4{
5 if (!dev->dma_mask || !dma_supported(dev, mask))
6 return -EIO;
7
8 *dev->dma_mask = mask;
9
10 return 0;
11}
12EXPORT_SYMBOL(dma_set_mask);
13
14