diff options
author | Manuel Lauss <mano@roarinelk.homelinux.net> | 2007-05-31 13:44:17 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2007-05-31 13:44:17 +0900 |
commit | bdff33ddd906b2ab9eb70e9098f507fac6d56b70 (patch) | |
tree | 2a0687b4cc9e352af65c43a37d73cbde293945f8 /arch | |
parent | 370ac91aab8403d74c2b59c3b43692eaed4ef268 (diff) | |
download | linux-3.10-bdff33ddd906b2ab9eb70e9098f507fac6d56b70.tar.gz linux-3.10-bdff33ddd906b2ab9eb70e9098f507fac6d56b70.tar.bz2 linux-3.10-bdff33ddd906b2ab9eb70e9098f507fac6d56b70.zip |
sh: Trivial fix for dma-api compile failure.
Trivial fix for arch/sh/drivers/dma/dma-api.c compile failure:
CC arch/sh/drivers/dma/dma-api.o
a/arch/sh/drivers/dma/dma-api.c: In function 'dma_wait_for_completion':
a/arch/sh/drivers/dma/dma-api.c:233: error: 'TASK_UNINTERRUPTIBLE' undeclared (first use in this function)
a/arch/sh/drivers/dma/dma-api.c:233: error: (Each undeclared identifier is reported only once
a/arch/sh/drivers/dma/dma-api.c:233: error: for each function it appears in.)
a/arch/sh/drivers/dma/dma-api.c:233: warning: implicit declaration of function 'schedule'
Signed-off-by: Manuel Lauss <mano@roarinelk.homelinux.net>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sh/drivers/dma/dma-api.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/sh/drivers/dma/dma-api.c b/arch/sh/drivers/dma/dma-api.c index 8057a27a1bc..cf8e1199433 100644 --- a/arch/sh/drivers/dma/dma-api.c +++ b/arch/sh/drivers/dma/dma-api.c @@ -16,6 +16,7 @@ #include <linux/list.h> #include <linux/platform_device.h> #include <linux/mm.h> +#include <linux/sched.h> #include <asm/dma.h> DEFINE_SPINLOCK(dma_spin_lock); |