From patchwork Wed May 5 15:20:21 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Peter_H=C3=BCwe?= X-Patchwork-Id: 51703 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from bilbo.ozlabs.org (localhost [127.0.0.1]) by ozlabs.org (Postfix) with ESMTP id DD2E5B8305 for ; Thu, 6 May 2010 01:20:40 +1000 (EST) Received: by ozlabs.org (Postfix) id 9A0AFB7D70; Thu, 6 May 2010 01:20:33 +1000 (EST) Delivered-To: linuxppc-dev@ozlabs.org Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by ozlabs.org (Postfix) with SMTP id 8A7DFB7D6D for ; Thu, 6 May 2010 01:20:31 +1000 (EST) Received: (qmail invoked by alias); 05 May 2010 15:20:25 -0000 Received: from dslb-084-056-016-121.pools.arcor-ip.net (EHLO lamer.localnet) [84.56.16.121] by mail.gmx.net (mp051) with SMTP; 05 May 2010 17:20:25 +0200 X-Authenticated: #12255092 X-Provags-ID: V01U2FsdGVkX18pY/R/rIIpJ9uiu2JJcJX/dK/00VibGwhRrrD3Pf UT28aMR26MyiFu From: Peter =?iso-8859-1?q?H=FCwe?= To: Mauro Carvalho Chehab , linuxppc-dev@ozlabs.org Subject: [PATCH] media/IR: Add missing include file to rc-map.c Date: Wed, 5 May 2010 17:20:21 +0200 User-Agent: KMail/1.12.4 (Linux/2.6.33.2; KDE/4.3.5; x86_64; ; ) MIME-Version: 1.0 Message-Id: <201005051720.22617.PeterHuewe@gmx.de> X-Y-GMX-Trusted: 0 Cc: linux-mips@linux-mips.org, linux-sh@vger.kernel.org, linux-kernel@vger.kernel.org, David =?iso-8859-1?q?H=E4rdeman?= , linux-m68k@lists.linux-m68k.org, linux-media@vger.kernel.org X-BeenThere: linuxppc-dev@lists.ozlabs.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@lists.ozlabs.org Errors-To: linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@lists.ozlabs.org From: Peter Huewe This patch adds a missing include linux/delay.h to prevent build failures[1-5] Signed-off-by: Peter Huewe --- KernelVersion: linux-next-20100505 References: [1] http://kisskb.ellerman.id.au/kisskb/buildresult/2571452/ [2] http://kisskb.ellerman.id.au/kisskb/buildresult/2571188/ [3] http://kisskb.ellerman.id.au/kisskb/buildresult/2571479/ [4] http://kisskb.ellerman.id.au/kisskb/buildresult/2571429/ [5] http://kisskb.ellerman.id.au/kisskb/buildresult/2571432/ drivers/media/IR/rc-map.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/media/IR/rc-map.c b/drivers/media/IR/rc-map.c index caf6a27..46a8f15 100644 --- a/drivers/media/IR/rc-map.c +++ b/drivers/media/IR/rc-map.c @@ -14,6 +14,7 @@ #include #include +#include /* Used to handle IR raw handler extensions */ static LIST_HEAD(rc_map_list);