Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bdff33ddd906b2ab9eb70e9098f507fac6d56b70
Commit:     bdff33ddd906b2ab9eb70e9098f507fac6d56b70
Parent:     370ac91aab8403d74c2b59c3b43692eaed4ef268
Author:     Manuel Lauss <[EMAIL PROTECTED]>
AuthorDate: Thu May 31 13:44:17 2007 +0900
Committer:  Paul Mundt <[EMAIL PROTECTED]>
CommitDate: Thu May 31 13:44:17 2007 +0900

    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 <[EMAIL PROTECTED]>
    Signed-off-by: Paul Mundt <[EMAIL PROTECTED]>
---
 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 8057a27..cf8e119 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);
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to