2014-02-09 14:45:09

by Paul Bolle

[permalink] [raw]
Subject: [PATCH] xtensa: no need to select USE_GENERIC_SMP_HELPERS

Commit f615136c06a7 ("xtensa: add SMP support") added "select
USE_GENERIC_SMP_HELPERS". But the Kconfig symbol USE_GENERIC_SMP_HELPERS
was already removed in v3.13, so that select is a nop. Drop it.

Signed-off-by: Paul Bolle <[email protected]>
---
Untested.

USE_GENERIC_SMP_HELPERS was removed in commit 0a06ff068f12 ("kernel:
remove CONFIG_USE_GENERIC_SMP_HELPER").

arch/xtensa/Kconfig | 1 -
1 file changed, 1 deletion(-)

diff --git a/arch/xtensa/Kconfig b/arch/xtensa/Kconfig
index ba56e11..c1d69ba 100644
--- a/arch/xtensa/Kconfig
+++ b/arch/xtensa/Kconfig
@@ -135,7 +135,6 @@ config HAVE_SMP
config SMP
bool "Enable Symmetric multi-processing support"
depends on HAVE_SMP
- select USE_GENERIC_SMP_HELPERS
select GENERIC_SMP_IDLE_THREAD
help
Enabled SMP Software; allows more than one CPU/CORE
--
1.8.5.3


2014-02-10 12:40:27

by Max Filippov

[permalink] [raw]
Subject: Re: [PATCH] xtensa: no need to select USE_GENERIC_SMP_HELPERS

On Sun, Feb 9, 2014 at 6:45 PM, Paul Bolle <[email protected]> wrote:
> Commit f615136c06a7 ("xtensa: add SMP support") added "select
> USE_GENERIC_SMP_HELPERS". But the Kconfig symbol USE_GENERIC_SMP_HELPERS
> was already removed in v3.13, so that select is a nop. Drop it.
>
> Signed-off-by: Paul Bolle <[email protected]>
> ---
> Untested.
>
> USE_GENERIC_SMP_HELPERS was removed in commit 0a06ff068f12 ("kernel:
> remove CONFIG_USE_GENERIC_SMP_HELPER").
>
> arch/xtensa/Kconfig | 1 -
> 1 file changed, 1 deletion(-)

Thanks, applied to my xtensa tree.

-- Max