diff options
author | Jean Delvare <khali@linux-fr.org> | 2007-03-06 02:45:12 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2007-05-02 19:02:34 -0700 |
commit | a9dfd281a7e12f6d9b53b5a28649b3a3c76a70e6 (patch) | |
tree | 824e770379f8dea598e411ba43aeb7659f26c8dc /include/asm-m68knommu | |
parent | e325e1f0783382298141c74737712637943c6063 (diff) | |
download | linux-3.10-a9dfd281a7e12f6d9b53b5a28649b3a3c76a70e6.tar.gz linux-3.10-a9dfd281a7e12f6d9b53b5a28649b3a3c76a70e6.tar.bz2 linux-3.10-a9dfd281a7e12f6d9b53b5a28649b3a3c76a70e6.zip |
PCI: scatterlist.h needs types.h
Most architectures' scatterlist.h use the type dma_addr_t, but omit to
include <asm/types.h> which defines it. This could lead to build failures,
so let's add the missing includes.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include/asm-m68knommu')
-rw-r--r-- | include/asm-m68knommu/scatterlist.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/asm-m68knommu/scatterlist.h b/include/asm-m68knommu/scatterlist.h index 2085d6ff878..4da79d3d3f3 100644 --- a/include/asm-m68knommu/scatterlist.h +++ b/include/asm-m68knommu/scatterlist.h @@ -2,6 +2,7 @@ #define _M68KNOMMU_SCATTERLIST_H #include <linux/mm.h> +#include <asm/types.h> struct scatterlist { struct page *page; |