From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752778AbdFUKZh (ORCPT ); Wed, 21 Jun 2017 06:25:37 -0400 Received: from mail-oi0-f65.google.com ([209.85.218.65]:33817 "EHLO mail-oi0-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752339AbdFUKZg (ORCPT ); Wed, 21 Jun 2017 06:25:36 -0400 MIME-Version: 1.0 In-Reply-To: References: <20170606005426.26446-1-afaerber@suse.de> <20170606005426.26446-21-afaerber@suse.de> From: Arnd Bergmann Date: Wed, 21 Jun 2017 12:25:34 +0200 X-Google-Sender-Auth: gsQ0lkRPSP2lVspyGL7aSIDiVXM Message-ID: Subject: Re: [PATCH v4 20/28] ARM: owl: Implement CPU enable-method for S500 To: =?UTF-8?Q?Andreas_F=C3=A4rber?= Cc: Linux ARM , mp-cs@actions-semi.com, Thomas Liau , =?UTF-8?B?5byg5Lic6aOO?= , =?UTF-8?B?5YiY54Kc?= , =?UTF-8?B?5byg5aSp55uK?= , 96boards@ucrobotics.com, support@lemaker.org, Linux Kernel Mailing List , Russell King Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by mail.home.local id v5LAPiIv005116 On Wed, Jun 21, 2017 at 10:16 AM, Arnd Bergmann wrote: > On Tue, Jun 6, 2017 at 2:54 AM, Andreas Färber wrote: >> Allow to bring up CPU1. >> >> Based on LeMaker linux-actions tree. >> >> Signed-off-by: Andreas Färber >> --- >> v3 -> v4: Unchanged >> >> v3: new >> >> arch/arm/mach-actions/Makefile | 3 + >> arch/arm/mach-actions/headsmp.S | 68 ++++++++++++++++ >> arch/arm/mach-actions/platsmp.c | 166 ++++++++++++++++++++++++++++++++++++++++ > > I now see build errors in linux-next: > > /git/arm-soc/arch/arm/mach-actions/platsmp.c: In function 'write_pen_release': > /git/arm-soc/arch/arm/mach-actions/platsmp.c:39:2: error: > 'pen_release' undeclared (first use in this function); did you mean I have a fix and tested it now. Please fold this into your patch: Arnd Subject: [PATCH] ARM: owl: fix non-SMP build arch/arm/mach-actions/platsmp.c: In function 'write_pen_release': arch/arm/mach-actions/platsmp.c:39:2: error: 'pen_release' undeclared (first use in this function); did you mean 'seq_release'? Signed-off-by: Arnd Bergmann diff --git a/arch/arm/mach-actions/Makefile b/arch/arm/mach-actions/Makefile index 217e95d04b43..94f8dbafba21 100644 --- a/arch/arm/mach-actions/Makefile +++ b/arch/arm/mach-actions/Makefile @@ -1,4 +1,4 @@ -obj-$(CONFIG_ARCH_ACTIONS) += owl.o -obj-${CONFIG_ARCH_ACTIONS} += platsmp.o headsmp.o +obj-y += owl.o +obj-$(CONFIG_SMP) += platsmp.o headsmp.o AFLAGS_headsmp.o := -Wa,-march=armv7-a