From mboxrd@z Thu Jan 1 00:00:00 1970 From: Geert Uytterhoeven Date: Mon, 11 Jan 2016 18:25:26 +0000 Subject: [PATCH 1/2] v4l: vsp1: Add missing #include Message-Id: <1452536727-19538-1-git-send-email-geert+renesas@glider.be> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-sh@vger.kernel.org If CONFIG_SPI=n: drivers/media/platform/vsp1/vsp1_pipe.c: In function 'vsp1_pipeline_stop': drivers/media/platform/vsp1/vsp1_pipe.c:226:429: error: 'TASK_UNINTERRUPTIBLE' undeclared (first use in this function) ret = wait_event_timeout(pipe->wq, vsp1_pipeline_stopped(pipe), ^ drivers/media/platform/vsp1/vsp1_pipe.c:226:429: note: each undeclared identifier is reported only once for each function it appears in drivers/media/platform/vsp1/vsp1_pipe.c:226:642: error: 'TASK_INTERRUPTIBLE' undeclared (first use in this function) ret = wait_event_timeout(pipe->wq, vsp1_pipeline_stopped(pipe), ^ drivers/media/platform/vsp1/vsp1_pipe.c:226:688: error: 'TASK_KILLABLE' undeclared (first use in this function) ret = wait_event_timeout(pipe->wq, vsp1_pipeline_stopped(pipe), ^ drivers/media/platform/vsp1/vsp1_pipe.c:226:3: error: implicit declaration of function 'schedule_timeout' [-Werror=implicit-function-declaration] ret = wait_event_timeout(pipe->wq, vsp1_pipeline_stopped(pipe), ^ drivers/media/platform/vsp1/vsp1_pipe.c: In function 'vsp1_pipeline_frame_end': drivers/media/platform/vsp1/vsp1_pipe.c:287:24: error: 'TASK_NORMAL' undeclared (first use in this function) wake_up(&pipe->wq); ^ drivers/media/platform/vsp1/vsp1_pipe.c: In function 'vsp1_pipelines_suspend': drivers/media/platform/vsp1/vsp1_pipe.c:378:429: error: 'TASK_UNINTERRUPTIBLE' undeclared (first use in this function) ret = wait_event_timeout(pipe->wq, vsp1_pipeline_stopped(pipe), ^ drivers/media/platform/vsp1/vsp1_pipe.c:378:642: error: 'TASK_INTERRUPTIBLE' undeclared (first use in this function) ret = wait_event_timeout(pipe->wq, vsp1_pipeline_stopped(pipe), ^ drivers/media/platform/vsp1/vsp1_pipe.c:378:688: error: 'TASK_KILLABLE' undeclared (first use in this function) ret = wait_event_timeout(pipe->wq, vsp1_pipeline_stopped(pipe), ^ Signed-off-by: Geert Uytterhoeven --- Against renesas-drivers-2016-01-05-v4.4-rc8 drivers/media/platform/vsp1/vsp1_pipe.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/media/platform/vsp1/vsp1_pipe.c b/drivers/media/platform/vsp1/vsp1_pipe.c index 96f0e7d4c400172e..2283e64f12faadd1 100644 --- a/drivers/media/platform/vsp1/vsp1_pipe.c +++ b/drivers/media/platform/vsp1/vsp1_pipe.c @@ -13,6 +13,7 @@ #include #include +#include #include #include -- 1.9.1