* [PATCH] soc/fsl: dpaa_sys.h: fix ARM32 typo
@ 2016-09-27 8:27 Valentin Rothberg
2016-09-28 19:59 ` Scott Wood
0 siblings, 1 reply; 2+ messages in thread
From: Valentin Rothberg @ 2016-09-27 8:27 UTC (permalink / raw)
To: oss, roy.pledge, claudiu.manoil
Cc: Emilian.Medve, Igal.Liberman, linux-kernel, Valentin Rothberg
The Kconfig symbol for 32bit ARM is 'ARM', not 'ARM32'.
Signed-off-by: Valentin Rothberg <valentinrothberg@gmail.com>
---
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
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] soc/fsl: dpaa_sys.h: fix ARM32 typo
2016-09-27 8:27 [PATCH] soc/fsl: dpaa_sys.h: fix ARM32 typo Valentin Rothberg
@ 2016-09-28 19:59 ` Scott Wood
0 siblings, 0 replies; 2+ messages in thread
From: Scott Wood @ 2016-09-28 19:59 UTC (permalink / raw)
To: Valentin Rothberg, roy.pledge, claudiu.manoil; +Cc: linux-kernel
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 <valentinrothberg@gmail.com>
> ---
> 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
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-09-28 19:59 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-27 8:27 [PATCH] soc/fsl: dpaa_sys.h: fix ARM32 typo Valentin Rothberg
2016-09-28 19:59 ` Scott Wood
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome