summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorAndrew Boie <andrew.p.boie@intel.com>2015-09-18 10:15:51 -0700
committerAnas Nashif <anas.nashif@intel.com>2016-02-05 20:24:17 -0500
commit858decd162d99d4f0970ec1576af1fb0370f0ed4 (patch)
tree996cd8359a47dcf850aed07405afc889451e7f9a /misc
parent6865fb658f3177a64c665d1226f41c10e14455d8 (diff)
misc: don't depend on serial drivers for printk()/printf()
We are introducing other kinds of drivers which support a console that isn't over a UART. Change-Id: I0dddbdce958437b5709c5ab26252ed47d030413d Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
Diffstat (limited to 'misc')
-rw-r--r--misc/Kconfig6
1 files changed, 3 insertions, 3 deletions
diff --git a/misc/Kconfig b/misc/Kconfig
index 3571eaa86..da8cc22e4 100644
--- a/misc/Kconfig
+++ b/misc/Kconfig
@@ -152,18 +152,18 @@ config DEBUG
config PRINTK
bool
prompt "Send printk() to console"
- depends on SERIAL_HAS_DRIVER
+ depends on CONSOLE_HAS_DRIVER
default y
help
This option directs printk() debugging output to the supported
- console device (UART), rather than suppressing the generation
+ console device, rather than suppressing the generation
of printk() output entirely. Output is sent immediately, without
any mutual exclusion or buffering.
config STDOUT_CONSOLE
bool
prompt "Send stdout to console"
- depends on SERIAL_HAS_DRIVER
+ depends on CONSOLE_HAS_DRIVER
default n
help
This option directs standard output (e.g. printf) to the console