From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Cousson, Benoit" Subject: Re: [PATCH] OMAP2+: Fix Compilation error on current mainline Date: Tue, 8 Nov 2011 11:46:57 +0100 Message-ID: <4EB908A1.40404@ti.com> References: <4EB7E50D.40406@ti.com> <1320733698-23411-1-git-send-email-govindraj.raja@ti.com> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from arroyo.ext.ti.com ([192.94.94.40]:38517 "EHLO arroyo.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752586Ab1KHKrC (ORCPT ); Tue, 8 Nov 2011 05:47:02 -0500 In-Reply-To: <1320733698-23411-1-git-send-email-govindraj.raja@ti.com> Sender: linux-omap-owner@vger.kernel.org List-Id: linux-omap@vger.kernel.org To: "Govindraj.R" Cc: linux-omap@vger.kernel.org, Tony Lindgren , Santosh Shilimkar Hi Govind, On 11/8/2011 7:28 AM, Govindraj.R wrote: > Patch to fix below compilation error on latest mainline commit > b32fc0a0629bf5894b35f33554c118aacfd0d1e2 with omap2plus_defconfig. > > arch/arm/mach-omap2/omap_l3_noc.c:250: error: 'THIS_MODULE' undeclared here (not in a function) > make[1]: *** [arch/arm/mach-omap2/omap_l3_noc.o] Error 1 > > Signed-off-by: Govindraj.R > --- > arch/arm/mach-omap2/omap_l3_noc.c | 1 + > 1 files changed, 1 insertions(+), 0 deletions(-) > > diff --git a/arch/arm/mach-omap2/omap_l3_noc.c b/arch/arm/mach-omap2/omap_l3_noc.c > index c8b1bef..c2cc196 100644 > --- a/arch/arm/mach-omap2/omap_l3_noc.c > +++ b/arch/arm/mach-omap2/omap_l3_noc.c > @@ -26,6 +26,7 @@ > #include > #include > #include > +#include That one is already fixed by Axel Lin, and already pulled by Tony. http://www.spinics.net/lists/linux-omap/msg59847.html This is the missing semi-colon that still need to be fixed. Regards, Benoit