From patchwork Fri Jul 29 05:25:33 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Rothwell X-Patchwork-Id: 7064 Return-path: Envelope-to: mchehab@infradead.org Delivery-date: Fri, 29 Jul 2011 05:25:52 +0000 Received: from casper.infradead.org [85.118.1.10] by localhost.localdomain with IMAP (fetchmail-6.3.17) for (single-drop); Fri, 29 Jul 2011 02:26:22 -0300 (BRT) Received: from vger.kernel.org ([209.132.180.67]) by casper.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1Qmfa3-0002Fz-Ox; Fri, 29 Jul 2011 05:25:52 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753614Ab1G2FZh (ORCPT + 1 other); Fri, 29 Jul 2011 01:25:37 -0400 Received: from chilli.pcug.org.au ([203.10.76.44]:55429 "EHLO smtps.tip.net.au" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752361Ab1G2FZg (ORCPT ); Fri, 29 Jul 2011 01:25:36 -0400 Received: from canb.auug.org.au (ibmaus65.lnk.telstra.net [165.228.126.9]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtps.tip.net.au (Postfix) with ESMTPSA id 114FD144B76; Fri, 29 Jul 2011 15:25:34 +1000 (EST) Date: Fri, 29 Jul 2011 15:25:33 +1000 From: Stephen Rothwell To: Paul Gortmaker Cc: linux-next@vger.kernel.org, linux-kernel@vger.kernel.org, Mauro Carvalho Chehab , linux-media@vger.kernel.org Subject: linux-next: build failure after merge of the moduleh tree Message-Id: <20110729152533.73329e8bafd4e839e85f0555@canb.auug.org.au> X-Mailer: Sylpheed 3.2.0beta1 (GTK+ 2.24.5; i486-pc-linux-gnu) Mime-Version: 1.0 Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org Hi Paul, After merging the moduleh tree, today's linux-next build (x86_64 allmodconfig) failed like this: drivers/media/rc/ir-raw.c: In function 'init_decoders': drivers/media/rc/ir-raw.c:354:2: error: implicit declaration of function 'request_module' I have added this patch for today: From: Stephen Rothwell Date: Fri, 29 Jul 2011 15:21:27 +1000 Subject: [PATCH] ir-raw.c: include modules .h for request_module Signed-off-by: Stephen Rothwell --- drivers/media/rc/ir-raw.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/media/rc/ir-raw.c b/drivers/media/rc/ir-raw.c index 56adca8..ba817d2 100644 --- a/drivers/media/rc/ir-raw.c +++ b/drivers/media/rc/ir-raw.c @@ -14,7 +14,7 @@ #include #include -#include +#include #include #include #include "rc-core-priv.h"