From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754294Ab2HPNgA (ORCPT ); Thu, 16 Aug 2012 09:36:00 -0400 Received: from mho-02-ewr.mailhop.org ([204.13.248.72]:19270 "EHLO mho-02-ewr.mailhop.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753884Ab2HPNf5 (ORCPT ); Thu, 16 Aug 2012 09:35:57 -0400 X-Mail-Handler: Dyn Standard SMTP by Dyn X-Originating-IP: 173.50.127.139 X-Report-Abuse-To: abuse@dyndns.com (see http://www.dyndns.com/services/sendlabs/outbound_abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX1/GepkhbwSC3S8ENsb3YxCpSr0xAmpJlTE= Date: Thu, 16 Aug 2012 09:35:21 -0400 From: Jason Cooper To: Sebastian Hesselbarth Cc: Andrew Lunn , Russell King , Arnd Bergmann , linux-kernel@vger.kernel.org, Olof Johansson , linux-arm-kernel@lists.infradead.org Subject: Re: [PATCH v2 1/2] ARM: kirkwood: DT board setup for Seagate FreeAgent Dockstar Message-ID: <20120816133521.GP22226@titan.lakedaemon.net> References: <20120814193613.GS22226@titan.lakedaemon.net> <1344977022-29037-1-git-send-email-sebastian.hesselbarth@gmail.com> <20120814232256.GX22226@titan.lakedaemon.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20120814232256.GX22226@titan.lakedaemon.net> User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Aug 14, 2012 at 07:22:56PM -0400, Jason Cooper wrote: > On Tue, Aug 14, 2012 at 10:43:41PM +0200, Sebastian Hesselbarth wrote: > > This add a DT compatible board specific setup for the Seagate > > FreeAgent Dockstar. > > > > Signed-off-by: Sebastian Hesselbarth > > --- > > Cc: Jason Cooper > > Cc: Andrew Lunn > > Cc: Russell King > > Cc: linux-arm-kernel@lists.infradead.org > > Cc: linux-kernel@vger.kernel.org > > > > v2: rebased on git://git.infradead.org/users/jcooper/linux.git fixes-for-v3.6 > > patches [1/2] and [2/2] of this series applied to: > > git://git.infradead.org/users/jcooper/linux.git boards-for-v3.7 > > patch [2/2] depends upon: > > bda63c1 ARM: Kirkwood: fix Makefile.boot > > which should be in an upcoming v3.6-rc Oops, building with both legacy and DT support for the Dockstar yields the following error: arch/arm/mach-kirkwood/dockstar-setup.c:81:20: error: static declaration of 'dockstar_init' follows non-static declaration arch/arm/mach-kirkwood/common.h:86:6: note: previous declaration of 'dockstar_init' was here make[1]: *** [arch/arm/mach-kirkwood/dockstar-setup.o] Error 1 make: *** [arch/arm/mach-kirkwood] Error 2 As a quick fix I renamed your dockstar_init() to dockstar_dt_init() across your patch. This compiles clean. Unfortunately, I can't send this fix up as a separate patch (a bisect may land in between it and yours). Unless I hear otherwise from you in the next day or so, I'm going to collapse the fix into your patch and push it that way. thx, Jason.