Commit f932ac44 authored by Alexander Viro's avatar Alexander Viro Committed by Linus Torvalds

[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: default avatarAl Viro <viro@parcelfarce.linux.org.uk>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent ff3f05c0
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment