From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753928AbcI1T7Y (ORCPT ); Wed, 28 Sep 2016 15:59:24 -0400 Received: from host.buserror.net ([209.198.135.123]:36506 "EHLO host.buserror.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752032AbcI1T7Q (ORCPT ); Wed, 28 Sep 2016 15:59:16 -0400 Message-ID: <1475092747.4283.48.camel@buserror.net> From: Scott Wood To: Valentin Rothberg , roy.pledge@nxp.com, claudiu.manoil@nxp.com Cc: linux-kernel@vger.kernel.org Date: Wed, 28 Sep 2016 14:59:07 -0500 In-Reply-To: <20160927082741.8040-1-valentinrothberg@gmail.com> References: <20160927082741.8040-1-valentinrothberg@gmail.com> Organization: NXP Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.18.5.2-0ubuntu3 Mime-Version: 1.0 Content-Transfer-Encoding: 8bit X-SA-Exim-Connect-IP: 75.72.173.242 X-SA-Exim-Mail-From: oss@buserror.net X-Spam-Report: * -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP * -15 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] Subject: Re: [PATCH] soc/fsl: dpaa_sys.h: fix ARM32 typo X-SA-Exim-Version: 4.2.1 (built Mon, 26 Dec 2011 16:57:07 +0000) X-SA-Exim-Scanned: Yes (on host.buserror.net) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 2016-09-27 at 10:27 +0200, Valentin Rothberg wrote: > The Kconfig symbol for 32bit ARM is 'ARM', not 'ARM32'. > > Signed-off-by: Valentin Rothberg > --- >  drivers/soc/fsl/qbman/dpaa_sys.h | 2 +- >  1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/soc/fsl/qbman/dpaa_sys.h > b/drivers/soc/fsl/qbman/dpaa_sys.h > index b63fd72295c6..608b1f608e13 100644 > --- a/drivers/soc/fsl/qbman/dpaa_sys.h > +++ b/drivers/soc/fsl/qbman/dpaa_sys.h > @@ -55,7 +55,7 @@ static inline void dpaa_flush(void *p) >  { >  #ifdef CONFIG_PPC >   flush_dcache_range((unsigned long)p, (unsigned long)p+64); > -#elif defined(CONFIG_ARM32) > +#elif defined(CONFIG_ARM) >   __cpuc_flush_dcache_area(p, 64); >  #elif defined(CONFIG_ARM64) >   __flush_dcache_area(p, 64); Despite a couple stray pieces like this, the current qbman submission only supports PPC.  ARM support is expected as a followup that should go via the arm-soc tree. -Scott