diff options
| author | Alexander Viro <viro@parcelfarce.linux.theplanet.co.uk> | 2004-10-08 22:51:39 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2004-10-08 22:51:39 -0700 |
| commit | f932ac44a9d0193a879baf45c95bd79981449a14 (patch) | |
| tree | 1e0542cd14c6dc6fc6a806624754c2ee9f859da4 /include/linux | |
| parent | ff3f05c0a6d065bab29cd47781ef7e4235255fbb (diff) | |
[PATCH] i2o.h fix
i2o.h uses stuff defined in linux/dma-mapping.h but includes
asm/dma-mapping.h instead. It works by accident on some platforms
(they end up pulling linux/dma-mapping.h from asm-generic/pci-dma-compat.h
before it hits the fan), but breaks on e.g. alpha.
Signed-off-by: Al Viro <viro@parcelfarce.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/i2o.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/i2o.h b/include/linux/i2o.h index 6f9949fc60df..a68437640135 100644 --- a/include/linux/i2o.h +++ b/include/linux/i2o.h @@ -28,7 +28,7 @@ #include <asm/io.h> #include <asm/semaphore.h> /* Needed for MUTEX init macros */ #include <linux/pci.h> -#include <asm/dma-mapping.h> +#include <linux/dma-mapping.h> /* message queue empty */ #define I2O_QUEUE_EMPTY 0xffffffff |
