diff options
author | Helge Deller <deller@gmx.de> | 2022-04-01 22:24:20 +0200 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2022-05-08 20:01:11 +0200 |
commit | 1955c4f879a130c7822f483cf593338ad747aed4 (patch) | |
tree | d08e5e2c24baa127f1f6e9bf1402e9b45cd44a1b | |
parent | 7e93a3dd63db2341d094ab1d9ba29b5d8d5093d1 (diff) | |
download | linux-stable-1955c4f879a130c7822f483cf593338ad747aed4.tar.gz linux-stable-1955c4f879a130c7822f483cf593338ad747aed4.tar.bz2 linux-stable-1955c4f879a130c7822f483cf593338ad747aed4.zip |
parisc: Re-enable GENERIC_CPU_DEVICES for !SMP
In commit 62773112acc5 ("parisc: Switch from GENERIC_CPU_DEVICES to
GENERIC_ARCH_TOPOLOGY") GENERIC_CPU_DEVICES was unconditionally turned
off, but this triggers a warning in topology_add_dev(). Turning it back
on for the !SMP case avoids this warning.
Reported-by: Guenter Roeck <linux@roeck-us.net>
Tested-by: Guenter Roeck <linux@roeck-us.net>
Fixes: 62773112acc5 ("parisc: Switch from GENERIC_CPU_DEVICES to GENERIC_ARCH_TOPOLOGY")
Signed-off-by: Helge Deller <deller@gmx.de>
-rw-r--r-- | arch/parisc/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/parisc/Kconfig b/arch/parisc/Kconfig index 52e550b45692..bd22578859d0 100644 --- a/arch/parisc/Kconfig +++ b/arch/parisc/Kconfig @@ -38,6 +38,7 @@ config PARISC select ARCH_HAVE_NMI_SAFE_CMPXCHG select GENERIC_SMP_IDLE_THREAD select GENERIC_ARCH_TOPOLOGY if SMP + select GENERIC_CPU_DEVICES if !SMP select GENERIC_LIB_DEVMEM_IS_ALLOWED select SYSCTL_ARCH_UNALIGN_ALLOW select SYSCTL_EXCEPTION_TRACE |