From patchwork Tue Apr 27 15:08:19 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Aguirre Rodriguez, Sergio Alberto" X-Patchwork-Id: 3248 Return-path: Envelope-to: mchehab@infradead.org Delivery-date: Tue, 27 Apr 2010 15:03:19 +0000 Received: from bombadil.infradead.org [18.85.46.34] by pedra with IMAP (fetchmail-6.3.6) for (single-drop); Tue, 27 Apr 2010 12:07:21 -0300 (BRT) Received: from vger.kernel.org ([209.132.180.67]) by bombadil.infradead.org with esmtp (Exim 4.69 #1 (Red Hat Linux)) id 1O6mJj-0000Yg-B2; Tue, 27 Apr 2010 15:03:19 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752157Ab0D0PDR (ORCPT + 1 other); Tue, 27 Apr 2010 11:03:17 -0400 Received: from devils.ext.ti.com ([198.47.26.153]:38184 "EHLO devils.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751254Ab0D0PDQ (ORCPT ); Tue, 27 Apr 2010 11:03:16 -0400 Received: from dlep36.itg.ti.com ([157.170.170.91]) by devils.ext.ti.com (8.13.7/8.13.7) with ESMTP id o3RF3CFn005673 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 27 Apr 2010 10:03:12 -0500 Received: from legion.dal.design.ti.com (localhost [127.0.0.1]) by dlep36.itg.ti.com (8.13.8/8.13.8) with ESMTP id o3RF3BfC027874; Tue, 27 Apr 2010 10:03:12 -0500 (CDT) Received: from localhost (dtx0091359-ubuntu-1.am.dhcp.ti.com [128.247.78.240]) by legion.dal.design.ti.com (8.11.7p1+Sun/8.11.7) with ESMTP id o3RF3BZ28151; Tue, 27 Apr 2010 10:03:11 -0500 (CDT) From: Sergio Aguirre To: Sakari Ailus Cc: linux-media@vger.kernel.org, Sergio Aguirre Subject: [PATCH] V4L: Events: Include slab.h explicitly Date: Tue, 27 Apr 2010 10:08:19 -0500 Message-Id: <1272380899-30398-1-git-send-email-saaguirre@ti.com> X-Mailer: git-send-email 1.6.3.3 Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org After commit ID: commit de380b55f92986c1a84198149cb71b7228d15fbd Author: Tejun Heo Date: Wed Mar 24 17:06:43 2010 +0900 percpu: don't implicitly include slab.h from percpu.h slab.h include was not longer implicitly included with sched.h. So, now we have to include slab.h explicitly. Signed-off-by: Sergio Aguirre --- drivers/media/video/v4l2-event.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/media/video/v4l2-event.c b/drivers/media/video/v4l2-event.c index aea4332..7f31cd2 100644 --- a/drivers/media/video/v4l2-event.c +++ b/drivers/media/video/v4l2-event.c @@ -26,6 +26,7 @@ #include #include +#include #include int v4l2_event_init(struct v4l2_fh *fh)