summaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/pci-dma_32.c
diff options
context:
space:
mode:
authorGlauber Costa2008-04-08 18:20:43 +0200
committerIngo Molnar2008-04-19 19:19:57 +0200
commit459121c9ec1e6c5d701f6520f4170719ac008951 (patch)
tree5b0fd3dbc761647e8da7a2be103c797cce0a8621 /arch/x86/kernel/pci-dma_32.c
parentx86: move dma_supported and dma_set_mask to pci-dma_32.c, fix (diff)
downloadkernel-qcow2-linux-459121c9ec1e6c5d701f6520f4170719ac008951.tar.gz
kernel-qcow2-linux-459121c9ec1e6c5d701f6520f4170719ac008951.tar.xz
kernel-qcow2-linux-459121c9ec1e6c5d701f6520f4170719ac008951.zip
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_32.c')
-rw-r--r--arch/x86/kernel/pci-dma_32.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/arch/x86/kernel/pci-dma_32.c b/arch/x86/kernel/pci-dma_32.c
index be6b1f6aa1a7..9e8297657c32 100644
--- a/arch/x86/kernel/pci-dma_32.c
+++ b/arch/x86/kernel/pci-dma_32.c
@@ -182,18 +182,6 @@ dma_supported(struct device *dev, u64 mask)
}
EXPORT_SYMBOL(dma_supported);
-int
-dma_set_mask(struct device *dev, u64 mask)
-{
- if (!dev->dma_mask || !dma_supported(dev, mask))
- return -EIO;
-
- *dev->dma_mask = mask;
-
- return 0;
-}
-EXPORT_SYMBOL(dma_set_mask);
-
static __devinit void via_no_dac(struct pci_dev *dev)
{