forked from Minki/linux
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>
This commit is contained in:
parent
e325e1f078
commit
a9dfd281a7
@ -2,6 +2,7 @@
|
||||
#define _ALPHA_SCATTERLIST_H
|
||||
|
||||
#include <asm/page.h>
|
||||
#include <asm/types.h>
|
||||
|
||||
struct scatterlist {
|
||||
struct page *page;
|
||||
|
@ -1,6 +1,8 @@
|
||||
#ifndef __ASM_AVR32_SCATTERLIST_H
|
||||
#define __ASM_AVR32_SCATTERLIST_H
|
||||
|
||||
#include <asm/types.h>
|
||||
|
||||
struct scatterlist {
|
||||
struct page *page;
|
||||
unsigned int offset;
|
||||
|
@ -1,6 +1,8 @@
|
||||
#ifndef _ASM_SCATTERLIST_H
|
||||
#define _ASM_SCATTERLIST_H
|
||||
|
||||
#include <asm/types.h>
|
||||
|
||||
/*
|
||||
* Drivers must set either ->address or (preferred) ->page and ->offset
|
||||
* to indicate where data must be transferred to/from.
|
||||
|
@ -1,6 +1,8 @@
|
||||
#ifndef _H8300_SCATTERLIST_H
|
||||
#define _H8300_SCATTERLIST_H
|
||||
|
||||
#include <asm/types.h>
|
||||
|
||||
struct scatterlist {
|
||||
struct page *page;
|
||||
unsigned int offset;
|
||||
|
@ -1,6 +1,8 @@
|
||||
#ifndef _I386_SCATTERLIST_H
|
||||
#define _I386_SCATTERLIST_H
|
||||
|
||||
#include <asm/types.h>
|
||||
|
||||
struct scatterlist {
|
||||
struct page *page;
|
||||
unsigned int offset;
|
||||
|
@ -6,6 +6,8 @@
|
||||
* David Mosberger-Tang <davidm@hpl.hp.com>, Hewlett-Packard Co
|
||||
*/
|
||||
|
||||
#include <asm/types.h>
|
||||
|
||||
struct scatterlist {
|
||||
struct page *page;
|
||||
unsigned int offset;
|
||||
|
@ -1,6 +1,8 @@
|
||||
#ifndef _ASM_M32R_SCATTERLIST_H
|
||||
#define _ASM_M32R_SCATTERLIST_H
|
||||
|
||||
#include <asm/types.h>
|
||||
|
||||
struct scatterlist {
|
||||
char * address; /* Location data is to be transferred to, NULL for
|
||||
* highmem page */
|
||||
|
@ -2,6 +2,7 @@
|
||||
#define _M68KNOMMU_SCATTERLIST_H
|
||||
|
||||
#include <linux/mm.h>
|
||||
#include <asm/types.h>
|
||||
|
||||
struct scatterlist {
|
||||
struct page *page;
|
||||
|
@ -1,6 +1,8 @@
|
||||
#ifndef __ASM_SCATTERLIST_H
|
||||
#define __ASM_SCATTERLIST_H
|
||||
|
||||
#include <asm/types.h>
|
||||
|
||||
struct scatterlist {
|
||||
struct page * page;
|
||||
unsigned int offset;
|
||||
|
@ -2,6 +2,7 @@
|
||||
#define _ASM_PARISC_SCATTERLIST_H
|
||||
|
||||
#include <asm/page.h>
|
||||
#include <asm/types.h>
|
||||
|
||||
struct scatterlist {
|
||||
struct page *page;
|
||||
|
@ -1,6 +1,8 @@
|
||||
#ifndef __ASM_SH_SCATTERLIST_H
|
||||
#define __ASM_SH_SCATTERLIST_H
|
||||
|
||||
#include <asm/types.h>
|
||||
|
||||
struct scatterlist {
|
||||
struct page * page; /* Location for highmem page, if any */
|
||||
unsigned int offset;/* for highmem, page offset */
|
||||
|
@ -11,6 +11,8 @@
|
||||
#ifndef __ASM_SH64_SCATTERLIST_H
|
||||
#define __ASM_SH64_SCATTERLIST_H
|
||||
|
||||
#include <asm/types.h>
|
||||
|
||||
struct scatterlist {
|
||||
struct page * page; /* Location for highmem page, if any */
|
||||
unsigned int offset;/* for highmem, page offset */
|
||||
|
@ -3,6 +3,7 @@
|
||||
#define _SPARC64_SCATTERLIST_H
|
||||
|
||||
#include <asm/page.h>
|
||||
#include <asm/types.h>
|
||||
|
||||
struct scatterlist {
|
||||
struct page *page;
|
||||
|
@ -14,6 +14,8 @@
|
||||
#ifndef __V850_SCATTERLIST_H__
|
||||
#define __V850_SCATTERLIST_H__
|
||||
|
||||
#include <asm/types.h>
|
||||
|
||||
struct scatterlist {
|
||||
struct page *page;
|
||||
unsigned offset;
|
||||
|
@ -1,6 +1,8 @@
|
||||
#ifndef _X8664_SCATTERLIST_H
|
||||
#define _X8664_SCATTERLIST_H
|
||||
|
||||
#include <asm/types.h>
|
||||
|
||||
struct scatterlist {
|
||||
struct page *page;
|
||||
unsigned int offset;
|
||||
|
@ -11,6 +11,8 @@
|
||||
#ifndef _XTENSA_SCATTERLIST_H
|
||||
#define _XTENSA_SCATTERLIST_H
|
||||
|
||||
#include <asm/types.h>
|
||||
|
||||
struct scatterlist {
|
||||
struct page *page;
|
||||
unsigned int offset;
|
||||
|
Loading…
Reference in New Issue
Block a user