From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933043AbZJLSSe (ORCPT ); Mon, 12 Oct 2009 14:18:34 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932837AbZJLSSd (ORCPT ); Mon, 12 Oct 2009 14:18:33 -0400 Received: from ppsw-0.csi.cam.ac.uk ([131.111.8.130]:60885 "EHLO ppsw-0.csi.cam.ac.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932827AbZJLSSd (ORCPT ); Mon, 12 Oct 2009 14:18:33 -0400 X-Cam-AntiVirus: no malware found X-Cam-SpamDetails: not scanned X-Cam-ScannerInfo: http://www.cam.ac.uk/cs/email/scanner/ Message-ID: <4AD372E1.50002@cam.ac.uk> Date: Mon, 12 Oct 2009 19:18:09 +0100 From: Jonathan Cameron User-Agent: Thunderbird 2.0.0.23 (X11/20091007) MIME-Version: 1.0 To: LKML CC: Greg Kroah-Hartman , devel@driverdev.osuosl.org Subject: [PATCH] staging: iio: Fix missing include X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org linux/sched.h include was removed form linux/poll.h by commmit a99bbaf5ee6bad1aca0c88ea65ec6e5373e86184 Required for definition of TASK_INTERRUPTIBLE amongst others --- Ingo posted a couple of similar patches in reply to Linus' 2.6.32-rc4 thread. I guess there will be quite a few more to come. drivers/staging/iio/industrialio-core.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/staging/iio/industrialio-core.c b/drivers/staging/iio/industrialio-core.c index 1fa18f2..8b67c17 100644 --- a/drivers/staging/iio/industrialio-core.c +++ b/drivers/staging/iio/industrialio-core.c @@ -18,6 +18,7 @@ #include #include #include +#include #include #include "iio.h" #include "trigger_consumer.h" -- 1.6.3.3