All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] NIOS2: fix kconfig unmet dependency warning for SERIAL_CORE_CONSOLE
@ 2021-05-26  7:03 Randy Dunlap
  0 siblings, 0 replies; only message in thread
From: Randy Dunlap @ 2021-05-26  7:03 UTC (permalink / raw)
  To: linux-kernel; +Cc: Randy Dunlap, Ley Foon Tan

SERIAL_CORE_CONSOLE depends on TTY so EARLY_PRINTK should also
depend on TTY so that it does not select SERIAL_CORE_CONSOLE
inadvertently.

WARNING: unmet direct dependencies detected for SERIAL_CORE_CONSOLE
  Depends on [n]: TTY [=n] && HAS_IOMEM [=y]
  Selected by [y]:
  - EARLY_PRINTK [=y]

Fixes: e8bf5bc776ed ("nios2: add early printk support")
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Ley Foon Tan <ley.foon.tan@intel.com>
---
 arch/nios2/Kconfig.debug |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

--- linux-next-20210525.orig/arch/nios2/Kconfig.debug
+++ linux-next-20210525/arch/nios2/Kconfig.debug
@@ -3,9 +3,10 @@
 config EARLY_PRINTK
 	bool "Activate early kernel debugging"
 	default y
+	depends on TTY
 	select SERIAL_CORE_CONSOLE
 	help
-	  Enable early printk on console
+	  Enable early printk on console.
 	  This is useful for kernel debugging when your machine crashes very
 	  early before the console code is initialized.
 	  You should normally say N here, unless you want to debug such a crash.

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-05-26  7:03 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-26  7:03 [PATCH] NIOS2: fix kconfig unmet dependency warning for SERIAL_CORE_CONSOLE Randy Dunlap

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.