diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2009-10-13 01:59:33 +0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-10-15 01:14:36 +0400 |
commit | db8fd2887c80ef7d2c8d98d2b9e626ded5e43444 (patch) | |
tree | bae9a5788b7fb737dd1c1322d3af645437e9035b /drivers | |
parent | 4377a026500a3f59e9c41c23d03e55ff2e712379 (diff) | |
download | linux-db8fd2887c80ef7d2c8d98d2b9e626ded5e43444.tar.xz |
Staging: b3dfg: fix sched.h build breakage
commit d43c36dc removed sched.h from interrupt.h. This broke the
b3dfg driver. This patch fixes this.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/b3dfg/b3dfg.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/b3dfg/b3dfg.c b/drivers/staging/b3dfg/b3dfg.c index 94c5d27d24d7..cda26bb493b3 100644 --- a/drivers/staging/b3dfg/b3dfg.c +++ b/drivers/staging/b3dfg/b3dfg.c @@ -36,6 +36,7 @@ #include <linux/wait.h> #include <linux/mm.h> #include <linux/uaccess.h> +#include <linux/sched.h> static unsigned int b3dfg_nbuf = 2; |