Skip to content

Commit 79ee1d2

Browse files
cjdelisletsbogend
authored andcommitted
mips: econet: Fix incorrect Kconfig dependencies
config ECONET selects SERIAL_OF_PLATFORM and that depends on SERIAL_8250 so we need to select SERIAL_8250 directly. Also do not enable DEBUG_ZBOOT unless DEBUG_KERNEL is set. Signed-off-by: Caleb James DeLisle <[email protected]> Reported-by: kernel test robot <[email protected]> Closes: https://lore.kernel.org/oe-kbuild-all/[email protected]/ Closes: https://lore.kernel.org/oe-kbuild-all/[email protected]/ Signed-off-by: Thomas Bogendoerfer <[email protected]>
1 parent faefb0a commit 79ee1d2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

arch/mips/Kconfig

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,9 +395,10 @@ config ECONET
395395
bool "EcoNet MIPS family"
396396
select BOOT_RAW
397397
select CPU_BIG_ENDIAN
398-
select DEBUG_ZBOOT
398+
select DEBUG_ZBOOT if DEBUG_KERNEL
399399
select EARLY_PRINTK_8250
400400
select ECONET_EN751221_TIMER
401+
select SERIAL_8250
401402
select SERIAL_OF_PLATFORM
402403
select SYS_SUPPORTS_BIG_ENDIAN
403404
select SYS_HAS_CPU_MIPS32_R1

0 commit comments

Comments
 (0)