The following commit has been merged in the linux branch: commit 8037cdade734383a8b2ef501e6d39645f8954073 Author: Greg Kroah-Hartman gregkh@suse.de Date: Mon Oct 12 14:59:56 2009 -0700
Staging: poch: fix sched.h build breakage
commit d43c36dc removed sched.h from interrupt.h. This broke the poch driver. This patch fixes this.
Signed-off-by: Greg Kroah-Hartman gregkh@suse.de
diff --git a/drivers/staging/poch/poch.c b/drivers/staging/poch/poch.c index 0d111dd..2eb8e3d 100644 --- a/drivers/staging/poch/poch.c +++ b/drivers/staging/poch/poch.c @@ -20,6 +20,7 @@ #include <linux/init.h> #include <linux/ioctl.h> #include <linux/io.h> +#include <linux/sched.h>
#include "poch.h"