aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86/kernel/pci-dma_32.c4
-rw-r--r--include/asm-x86/dma-mapping.h2
-rw-r--r--include/asm-x86/dma-mapping_64.h1
3 files changed, 6 insertions, 1 deletions
diff --git a/arch/x86/kernel/pci-dma_32.c b/arch/x86/kernel/pci-dma_32.c
index 453b4bda2714..55ab3c874d8f 100644
--- a/arch/x86/kernel/pci-dma_32.c
+++ b/arch/x86/kernel/pci-dma_32.c
@@ -14,6 +14,10 @@
14#include <linux/module.h> 14#include <linux/module.h>
15#include <asm/io.h> 15#include <asm/io.h>
16 16
17/* For i386, we make it point to the NULL address */
18dma_addr_t bad_dma_address __read_mostly = 0x0;
19EXPORT_SYMBOL(bad_dma_address);
20
17struct dma_coherent_mem { 21struct dma_coherent_mem {
18 void *virt_base; 22 void *virt_base;
19 u32 device_base; 23 u32 device_base;
diff --git a/include/asm-x86/dma-mapping.h b/include/asm-x86/dma-mapping.h
index c671a0aea59b..984935d86bbd 100644
--- a/include/asm-x86/dma-mapping.h
+++ b/include/asm-x86/dma-mapping.h
@@ -10,6 +10,8 @@
10#include <asm/io.h> 10#include <asm/io.h>
11#include <asm/swiotlb.h> 11#include <asm/swiotlb.h>
12 12
13extern dma_addr_t bad_dma_address;
14
13struct dma_mapping_ops { 15struct dma_mapping_ops {
14 int (*mapping_error)(dma_addr_t dma_addr); 16 int (*mapping_error)(dma_addr_t dma_addr);
15 void* (*alloc_coherent)(struct device *dev, size_t size, 17 void* (*alloc_coherent)(struct device *dev, size_t size,
diff --git a/include/asm-x86/dma-mapping_64.h b/include/asm-x86/dma-mapping_64.h
index 9674dac9fa3a..352bf4164a5e 100644
--- a/include/asm-x86/dma-mapping_64.h
+++ b/include/asm-x86/dma-mapping_64.h
@@ -1,7 +1,6 @@
1#ifndef _X8664_DMA_MAPPING_H 1#ifndef _X8664_DMA_MAPPING_H
2#define _X8664_DMA_MAPPING_H 1 2#define _X8664_DMA_MAPPING_H 1
3 3
4extern dma_addr_t bad_dma_address;
5extern int iommu_merge; 4extern int iommu_merge;
6 5
7static inline int dma_mapping_error(dma_addr_t dma_addr) 6static inline int dma_mapping_error(dma_addr_t dma_addr)