arch: cxd56xx: gnss: Fix compile error in debug log
Fix compile error when debug log is enabled. Replace debug message from obsolete logerr() to _err().
This commit is contained in:
parent
6d3fb9ee81
commit
bb348cc464
@ -47,19 +47,19 @@ extern "C"
|
||||
/* GNSS specific debug */
|
||||
|
||||
#ifdef CONFIG_CXD56_GNSS_DEBUG_ERROR
|
||||
# define gnsserr(fmt, ...) logerr(fmt, ## __VA_ARGS__)
|
||||
# define gnsserr(fmt, ...) _err(fmt, ## __VA_ARGS__)
|
||||
#else
|
||||
# define gnsserr(fmt, ...)
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_CXD56_GNSS_DEBUG_WARN
|
||||
# define gnsswarn(fmt, ...) logwarn(fmt, ## __VA_ARGS__)
|
||||
# define gnsswarn(fmt, ...) _warn(fmt, ## __VA_ARGS__)
|
||||
#else
|
||||
# define gnsswarn(fmt, ...)
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_CXD56_GNSS_DEBUG_INFO
|
||||
# define gnssinfo(fmt, ...) loginfo(fmt, ## __VA_ARGS__)
|
||||
# define gnssinfo(fmt, ...) _info(fmt, ## __VA_ARGS__)
|
||||
#else
|
||||
# define gnssinfo(fmt, ...)
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user