From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755197AbcI0I2W (ORCPT ); Tue, 27 Sep 2016 04:28:22 -0400 Received: from mail-lf0-f66.google.com ([209.85.215.66]:36841 "EHLO mail-lf0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751917AbcI0I2L (ORCPT ); Tue, 27 Sep 2016 04:28:11 -0400 From: Valentin Rothberg To: oss@buserror.net, roy.pledge@nxp.com, claudiu.manoil@nxp.com Cc: Emilian.Medve@Freescale.com, Igal.Liberman@Freescale.com, linux-kernel@vger.kernel.org, Valentin Rothberg Subject: [PATCH] soc/fsl: dpaa_sys.h: fix ARM32 typo Date: Tue, 27 Sep 2016 10:27:41 +0200 Message-Id: <20160927082741.8040-1-valentinrothberg@gmail.com> X-Mailer: git-send-email 2.9.3 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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); -- 2.9.3