Skip to content

Commit c8610c0

Browse files
gclementtsbogend
authored andcommitted
MIPS: Fix HOTPLUG_PARALLEL dependency
With MIPS, it is possible to have SMP enabled without HOTPLUG_CPU selected. However, in kernel/cpu.c, some code that uses HOTPLUG_PARALLEL also requires HOTPLUG_CPU to be selected. Therefore, we should fix the HOTPLUG_PARALLEL dependency to depend on HOTPLUG_CPU, not just SMP. Reported-by: kernel test robot <lkp@intel.com> Closes: https://lore.kernel.org/oe-kbuild-all/202510270120.21wA1aX1-lkp@intel.com/ Signed-off-by: Gregory CLEMENT <gregory.clement@bootlin.com> Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
1 parent 7d0a66e commit c8610c0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

arch/mips/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ config EYEQ
658658
select USB_UHCI_BIG_ENDIAN_DESC if CPU_BIG_ENDIAN
659659
select USB_UHCI_BIG_ENDIAN_MMIO if CPU_BIG_ENDIAN
660660
select USE_OF
661-
select HOTPLUG_PARALLEL if SMP
661+
select HOTPLUG_PARALLEL if HOTPLUG_CPU
662662
help
663663
Select this to build a kernel supporting EyeQ SoC from Mobileye.
664664

0 commit comments

Comments
 (0)