diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-07-31 17:04:15 -0400 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-10-31 19:30:47 -0400 |
commit | 4cffaf733662e6f5f7ec840d5b5425ee95714347 (patch) | |
tree | cc46dc80c2f921cec4800e94777382d2d97d5f53 /arch/arm/mach-bcmring | |
parent | 9e9074160fe73d3d3f26f6e6f3223ffd180030a0 (diff) | |
download | linux-3.10-4cffaf733662e6f5f7ec840d5b5425ee95714347.tar.gz linux-3.10-4cffaf733662e6f5f7ec840d5b5425ee95714347.tar.bz2 linux-3.10-4cffaf733662e6f5f7ec840d5b5425ee95714347.zip |
arm: fix implicit use of sched.h in bcmring/dma.c
To fix this:
arch/arm/mach-bcmring/dma.c: In function 'dma_request_channel_dbg':
arch/arm/mach-bcmring/dma.c:1022: error: 'TASK_INTERRUPTIBLE' undeclared (first use in this function)
arch/arm/mach-bcmring/dma.c:1022: error: (Each undeclared identifier is reported only once
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'arch/arm/mach-bcmring')
-rw-r--r-- | arch/arm/mach-bcmring/dma.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-bcmring/dma.c b/arch/arm/mach-bcmring/dma.c index 0ca00050666..b52b8de91bd 100644 --- a/arch/arm/mach-bcmring/dma.c +++ b/arch/arm/mach-bcmring/dma.c @@ -26,6 +26,7 @@ #include <linux/device.h> #include <linux/dma-mapping.h> #include <linux/interrupt.h> +#include <linux/sched.h> #include <linux/irqreturn.h> #include <linux/proc_fs.h> #include <linux/slab.h> |