From patchwork Fri Jul 29 05:37:07 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Rothwell X-Patchwork-Id: 7065 Return-path: Envelope-to: mchehab@infradead.org Delivery-date: Fri, 29 Jul 2011 05:37:17 +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:37:23 -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 1Qmfl6-0002ev-SW; Fri, 29 Jul 2011 05:37:17 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754611Ab1G2FhM (ORCPT + 1 other); Fri, 29 Jul 2011 01:37:12 -0400 Received: from chilli.pcug.org.au ([203.10.76.44]:40393 "EHLO smtps.tip.net.au" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754520Ab1G2FhL (ORCPT ); Fri, 29 Jul 2011 01:37:11 -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 1E543144B83; Fri, 29 Jul 2011 15:37:08 +1000 (EST) Date: Fri, 29 Jul 2011 15:37:07 +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: Re: linux-next: build failure after merge of the moduleh tree Message-Id: <20110729153707.389b56be0b6d51c31324fe5d@canb.auug.org.au> In-Reply-To: <20110729152533.73329e8bafd4e839e85f0555@canb.auug.org.au> References: <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, On Fri, 29 Jul 2011 15:25:33 +1000 Stephen Rothwell wrote: > > 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 Forget that, it was not the correct patch. Instead I have added this patch for today: From: Stephen Rothwell Date: Fri, 29 Jul 2011 15:34:32 +1000 Subject: [PATCH] ir-raw: include kmod.h for request_module Signed-off-by: Stephen Rothwell --- drivers/media/rc/ir-raw.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/media/rc/ir-raw.c b/drivers/media/rc/ir-raw.c index 56adca8..1ebaf5b 100644 --- a/drivers/media/rc/ir-raw.c +++ b/drivers/media/rc/ir-raw.c @@ -15,6 +15,7 @@ #include #include #include +#include #include #include #include "rc-core-priv.h"