Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1491756 > unrolled thread
| Started by | Valentin Rothberg <valentinrothberg@gmail.com> |
|---|---|
| First post | 2016-09-27 10:30 +0200 |
| Last post | 2016-09-28 22:00 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] soc/fsl: dpaa_sys.h: fix ARM32 typo Valentin Rothberg <valentinrothberg@gmail.com> - 2016-09-27 10:30 +0200
Re: [PATCH] soc/fsl: dpaa_sys.h: fix ARM32 typo Scott Wood <oss@buserror.net> - 2016-09-28 22:00 +0200
| From | Valentin Rothberg <valentinrothberg@gmail.com> |
|---|---|
| Date | 2016-09-27 10:30 +0200 |
| Subject | [PATCH] soc/fsl: dpaa_sys.h: fix ARM32 typo |
| Message-ID | <slVW1-7ay-5@gated-at.bofh.it> |
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
[toc] | [next] | [standalone]
| From | Scott Wood <oss@buserror.net> |
|---|---|
| Date | 2016-09-28 22:00 +0200 |
| Message-ID | <smtbj-2Ad-3@gated-at.bofh.it> |
| In reply to | #1491756 |
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
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web