[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <adamy40jwge.fsf@cisco.com>
Date: Fri, 09 Oct 2009 10:42:09 -0700
From: Roland Dreier <rdreier@...co.com>
To: Greg Kroah-Hartman <gregkh@...e.de>
Cc: Bill Pemberton <wfp5p@...ginia.edu>, devel@...verdev.osuosl.org,
linux-kernel@...r.kernel.org
Subject: Staging: comedi: Add include of <linux/sched.h> to fix build
Commit a99bbaf5 ("headers: remove sched.h from poll.h") removed the
implicit include of <linux/sched.h> via <linux/poll.h>, and broke the
comedi build with errors like:
drivers/staging/comedi/drivers/serial2002.c:201: error: 'TASK_INTERRUPTIBLE' undeclared (first use in this function)
Explicitly include <linux/sched.h> to fix this.
Signed-off-by: Roland Dreier <rolandd@...co.com>
---
drivers/staging/comedi/drivers/serial2002.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/drivers/staging/comedi/drivers/serial2002.c b/drivers/staging/comedi/drivers/serial2002.c
index a219679..3b706ca 100644
--- a/drivers/staging/comedi/drivers/serial2002.c
+++ b/drivers/staging/comedi/drivers/serial2002.c
@@ -40,6 +40,7 @@ Status: in development
#include <asm/ioctls.h>
#include <linux/serial.h>
#include <linux/poll.h>
+#include <linux/sched.h>
/*
* Board descriptions for two imaginary boards. Describing the
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists