arch: undef USE_SERIALDRIVER if CONFIG_CONSOLE_SYSLOG

An error was introduced from:

  commit f982ee43db
  Author: Xiang Xiao <xiaoxiang@xiaomi.com>
  Date:   Tue Feb 18 09:55:04 2020 +0800

    drivers/serial: Remove the lowconsole driver

    Replace with the syslog console driver which has more capability than lowconsole
This commit is contained in:
liuhaitao
2020-02-22 23:01:12 +08:00
committed by Gregory Nutt
parent 4bf2a1ee91
commit 8ca4ca5ae8
14 changed files with 85 additions and 23 deletions
+7 -2
View File
@@ -78,8 +78,13 @@
# undef USE_SERIALDRIVER
# undef USE_EARLYSERIALINIT
#else
# define USE_SERIALDRIVER 1
# define USE_EARLYSERIALINIT 1
# if defined(CONFIG_CONSOLE_SYSLOG)
# undef USE_SERIALDRIVER
# undef USE_EARLYSERIALINIT
# else
# define USE_SERIALDRIVER 1
# define USE_EARLYSERIALINIT 1
# endif
#endif
/****************************************************************************
+7 -2
View File
@@ -78,8 +78,13 @@
# undef USE_SERIALDRIVER
# undef USE_EARLYSERIALINIT
#else
# define USE_SERIALDRIVER 1
# define USE_EARLYSERIALINIT 1
# if defined(CONFIG_CONSOLE_SYSLOG)
# undef USE_SERIALDRIVER
# undef USE_EARLYSERIALINIT
# else
# define USE_SERIALDRIVER 1
# define USE_EARLYSERIALINIT 1
# endif
#endif
/****************************************************************************