diff --git a/examples/cc3000/telnetd_daemon.c b/examples/cc3000/telnetd_daemon.c index 1e2cb0392..9245b5ebf 100644 --- a/examples/cc3000/telnetd_daemon.c +++ b/examples/cc3000/telnetd_daemon.c @@ -160,7 +160,7 @@ static int telnetd_daemon(int argc, char *argv[]) goto errout_with_socket; } - /* Now go silent. Only the lldbg family of debug functions should + /* Now go silent. Only the llerr family of debug functions should * be used after this point because these do not depend on stdout * being available. */ @@ -181,7 +181,7 @@ static int telnetd_daemon(int argc, char *argv[]) acceptsd = accept(listensd, (struct sockaddr*)&myaddr, &addrlen); if (acceptsd < 0) { - nlldbg("accept failed: %d\n", errno); + nllerr("accept failed: %d\n", errno); goto errout_with_socket; } @@ -192,7 +192,7 @@ static int telnetd_daemon(int argc, char *argv[]) ling.l_linger = 30; /* timeout is seconds */ if (setsockopt(acceptsd, SOL_SOCKET, SO_LINGER, &ling, sizeof(struct linger)) < 0) { - nlldbg("setsockopt failed: %d\n", errno); + nllerr("setsockopt failed: %d\n", errno); goto errout_with_acceptsd; } #endif @@ -203,7 +203,7 @@ static int telnetd_daemon(int argc, char *argv[]) devpath = telnetd_driver(acceptsd, daemon); if (devpath == NULL) { - nlldbg("telnetd_driver failed\n"); + nllerr("telnetd_driver failed\n"); goto errout_with_acceptsd; } @@ -213,7 +213,7 @@ static int telnetd_daemon(int argc, char *argv[]) drvrfd = open(devpath, O_RDWR); if (drvrfd < 0) { - nlldbg("Failed to open %s: %d\n", devpath, errno); + nllerr("Failed to open %s: %d\n", devpath, errno); goto errout_with_acceptsd; } @@ -243,7 +243,7 @@ static int telnetd_daemon(int argc, char *argv[]) daemon->entry, NULL); if (pid < 0) { - nlldbg("Failed start the telnet session: %d\n", errno); + nllerr("Failed start the telnet session: %d\n", errno); goto errout_with_acceptsd; } diff --git a/examples/cc3000/telnetd_driver.c b/examples/cc3000/telnetd_driver.c index d1a0bc753..9a68190b2 100644 --- a/examples/cc3000/telnetd_driver.c +++ b/examples/cc3000/telnetd_driver.c @@ -397,7 +397,7 @@ static void telnetd_sendopt(FAR struct telnetd_dev_s *priv, uint8_t option, telnetd_dumpbuffer("Send optbuf", optbuf, 4); if (send(priv->td_psock, optbuf, 4, 0) < 0) { - nlldbg("Failed to send TELNET_IAC\n"); + nllerr("Failed to send TELNET_IAC\n"); } } @@ -498,7 +498,7 @@ static int telnetd_close(FAR struct file *filep) ret = asprintf(&devpath, TELNETD_DEVFMT, priv->td_minor); if (ret < 0) { - nlldbg("Failed to allocate the driver path\n"); + nllerr("Failed to allocate the driver path\n"); } else { @@ -507,7 +507,7 @@ static int telnetd_close(FAR struct file *filep) ret = unregister_driver(devpath); if (ret < 0) { - nlldbg("Failed to unregister the driver %s: %d\n", devpath, ret); + nllerr("Failed to unregister the driver %s: %d\n", devpath, ret); } free(devpath); @@ -645,7 +645,7 @@ static ssize_t telnetd_write(FAR struct file *filep, FAR const char *buffer, siz ret = send(priv->td_psock, priv->td_txbuffer, ncopied, 0); if (ret < 0) { - nlldbg("psock_send failed '%s': %d\n", priv->td_txbuffer, ret); + nllerr("psock_send failed '%s': %d\n", priv->td_txbuffer, ret); return ret; } @@ -662,7 +662,7 @@ static ssize_t telnetd_write(FAR struct file *filep, FAR const char *buffer, siz ret = send(priv->td_psock, priv->td_txbuffer, ncopied, 0); if (ret < 0) { - nlldbg("psock_send failed '%s': %d\n", priv->td_txbuffer, ret); + nllerr("psock_send failed '%s': %d\n", priv->td_txbuffer, ret); return ret; } } @@ -750,7 +750,7 @@ FAR char *telnetd_driver(long sd, FAR struct telnetd_s *daemon) priv = (FAR struct telnetd_dev_s*)malloc(sizeof(struct telnetd_dev_s)); if (!priv) { - nlldbg("Failed to allocate the driver data structure\n"); + nllerr("Failed to allocate the driver data structure\n"); return NULL; } @@ -786,7 +786,7 @@ FAR char *telnetd_driver(long sd, FAR struct telnetd_s *daemon) ret = asprintf(&devpath, TELNETD_DEVFMT, priv->td_minor); if (ret < 0) { - nlldbg("Failed to allocate the driver path\n"); + nllerr("Failed to allocate the driver path\n"); goto errout_with_dev; } @@ -795,7 +795,7 @@ FAR char *telnetd_driver(long sd, FAR struct telnetd_s *daemon) ret = register_driver(devpath, &g_telnetdfops, 0666, priv); if (ret < 0) { - nlldbg("Failed to register the driver %s: %d\n", devpath, ret); + nllerr("Failed to register the driver %s: %d\n", devpath, ret); goto errout_with_devpath; } diff --git a/examples/helloxx/helloxx_main.cxx b/examples/helloxx/helloxx_main.cxx index 064ec121d..5d01480b8 100644 --- a/examples/helloxx/helloxx_main.cxx +++ b/examples/helloxx/helloxx_main.cxx @@ -64,7 +64,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -74,7 +74,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/netutils/ftpc/ftpc_transfer.c b/netutils/ftpc/ftpc_transfer.c index 2b2d46edd..6fba83977 100644 --- a/netutils/ftpc/ftpc_transfer.c +++ b/netutils/ftpc/ftpc_transfer.c @@ -475,7 +475,7 @@ void ftpc_timeout(int argc, uint32_t arg1, ...) { FAR struct ftpc_session_s *session = (FAR struct ftpc_session_s *)arg1; - nlldbg("Timeout!\n"); + nllerr("Timeout!\n"); DEBUGASSERT(argc == 1 && session); kill(session->pid, CONFIG_FTP_SIGNAL); } diff --git a/netutils/telnetd/telnetd_daemon.c b/netutils/telnetd/telnetd_daemon.c index 815502974..3356981ff 100644 --- a/netutils/telnetd/telnetd_daemon.c +++ b/netutils/telnetd/telnetd_daemon.c @@ -226,7 +226,7 @@ static int telnetd_daemon(int argc, char *argv[]) goto errout_with_socket; } - /* Now go silent. Only the lldbg family of debug functions should + /* Now go silent. Only the llerr family of debug functions should * be used after this point because these do not depend on stdout * being available. */ @@ -259,7 +259,7 @@ static int telnetd_daemon(int argc, char *argv[]) } else { - nlldbg("ERROR: accept failed: %d\n", errval); + nllerr("ERROR: accept failed: %d\n", errval); goto errout_with_socket; } } @@ -271,7 +271,7 @@ static int telnetd_daemon(int argc, char *argv[]) ling.l_linger = 30; /* timeout is seconds */ if (setsockopt(acceptsd, SOL_SOCKET, SO_LINGER, &ling, sizeof(struct linger)) < 0) { - nlldbg("ERROR: setsockopt failed: %d\n", errno); + nllerr("ERROR: setsockopt failed: %d\n", errno); goto errout_with_acceptsd; } #endif @@ -281,7 +281,7 @@ static int telnetd_daemon(int argc, char *argv[]) fd = open("/dev/telnet", O_RDONLY); if (fd < 0) { - nlldbg("ERROR: open(/dev/telnet) failed: %d\n", errno); + nllerr("ERROR: open(/dev/telnet) failed: %d\n", errno); goto errout_with_acceptsd; } @@ -297,7 +297,7 @@ static int telnetd_daemon(int argc, char *argv[]) if (ret < 0) { - nlldbg("ERROR: open(/dev/telnet) failed: %d\n", errno); + nllerr("ERROR: open(/dev/telnet) failed: %d\n", errno); goto errout_with_acceptsd; } @@ -307,7 +307,7 @@ static int telnetd_daemon(int argc, char *argv[]) drvrfd = open(session.ts_devpath, O_RDWR); if (drvrfd < 0) { - nlldbg("ERROR: Failed to open %s: %d\n", session.ts_devpath, errno); + nllerr("ERROR: Failed to open %s: %d\n", session.ts_devpath, errno); goto errout_with_acceptsd; } @@ -333,7 +333,7 @@ static int telnetd_daemon(int argc, char *argv[]) daemon->entry, NULL); if (pid < 0) { - nlldbg("ERROR: Failed start the telnet session: %d\n", errno); + nllerr("ERROR: Failed start the telnet session: %d\n", errno); goto errout_with_acceptsd; } diff --git a/netutils/thttpd/fdwatch.c b/netutils/thttpd/fdwatch.c index 960979bc5..1d300aa87 100644 --- a/netutils/thttpd/fdwatch.c +++ b/netutils/thttpd/fdwatch.c @@ -58,30 +58,30 @@ /* Debug output from this file is normally suppressed. If enabled, be aware * that output to stdout will interfere with CGI programs (you could use the - * the low-level debug (lldbg) functions which probably do not use stdout + * the low-level debug (llerr) functions which probably do not use stdout */ #ifdef CONFIG_THTTPD_FDWATCH_DEBUG # ifdef CONFIG_CPP_HAVE_VARARGS # define fwdbg(format, ...) ndbg(format, ##__VA_ARGS__) -# define fwlldbg(format, ...) nlldbg(format, ##__VA_ARGS__) +# define fwllerr(format, ...) nllerr(format, ##__VA_ARGS__) # define fwinfo(format, ...) ninfo(format, ##__VA_ARGS__) # define fwllinfo(format, ...) nllinfo(format, ##__VA_ARGS__) # else # define fwdbg ndbg -# define fwlldbg nlldbg +# define fwllerr nllerr # define fwinfo ninfo # define fwllinfo nllinfo # endif #else # ifdef CONFIG_CPP_HAVE_VARARGS # define fwdbg(x...) -# define fwlldbg(x...) +# define fwllerr(x...) # define fwinfo(x...) # define fwllinfo(x...) # else # define fwdbg (void) -# define fwlldbg (void) +# define fwllerr (void) # define fwinfo (void) # define fwllinfo (void) # endif diff --git a/netutils/thttpd/thttpd_cgi.c b/netutils/thttpd/thttpd_cgi.c index b7f7bb587..341386abc 100644 --- a/netutils/thttpd/thttpd_cgi.c +++ b/netutils/thttpd/thttpd_cgi.c @@ -378,7 +378,7 @@ static inline int cgi_interpose_input(struct cgi_conn_s *cc) { if (errno != EINTR) { - nlldbg("read failed: %d\n", errno); + nllerr("read failed: %d\n", errno); return 1; } } @@ -391,7 +391,7 @@ static inline int cgi_interpose_input(struct cgi_conn_s *cc) nllinfo("nbytes_written: %d\n", nbytes_written); if (nbytes_written != nbytes_read) { - nlldbg("httpd_write failed\n"); + nllerr("httpd_write failed\n"); return 1; } cgi_dumpbuffer("Sent to CGI:", cc->inbuf.buffer, nbytes_written); @@ -469,7 +469,7 @@ static inline int cgi_interpose_output(struct cgi_conn_s *cc) { if (errno != EAGAIN) { - nlldbg("read: %d\n", errno); + nllerr("read: %d\n", errno); } return 1; } @@ -651,7 +651,7 @@ static inline int cgi_interpose_output(struct cgi_conn_s *cc) { if (errno != EAGAIN) { - nlldbg("read: %d\n", errno); + nllerr("read: %d\n", errno); } return 1; } @@ -720,7 +720,7 @@ static int cgi_child(int argc, char **argv) cc = (FAR struct cgi_conn_s*)httpd_malloc(sizeof(struct cgi_conn_s)); if (!cc) { - nlldbg("ERROR: cgi_conn allocation failed\n"); + nllerr("ERROR: cgi_conn allocation failed\n"); close(hc->conn_fd); goto errout; } @@ -768,7 +768,7 @@ static int cgi_child(int argc, char **argv) ret = pipe(pipefd); if (ret < 0) { - nlldbg("ERROR: STDIN pipe: %d\n", errno); + nllerr("ERROR: STDIN pipe: %d\n", errno); goto errout_with_cgiconn; } else @@ -784,7 +784,7 @@ static int cgi_child(int argc, char **argv) if (ret < 0) { - nlldbg("ERROR: STDIN dup2: %d\n", errno); + nllerr("ERROR: STDIN dup2: %d\n", errno); goto errout_with_descriptors; } } @@ -799,7 +799,7 @@ static int cgi_child(int argc, char **argv) ret = pipe(pipefd); if (ret < 0) { - nlldbg("ERROR: STDOUT pipe: %d\n", errno); + nllerr("ERROR: STDOUT pipe: %d\n", errno); goto errout_with_descriptors; } else @@ -815,7 +815,7 @@ static int cgi_child(int argc, char **argv) if (ret < 0) { - nlldbg("ERROR: STDOUT dup2: %d\n", errno); + nllerr("ERROR: STDOUT dup2: %d\n", errno); goto errout_with_descriptors; } } @@ -842,7 +842,7 @@ static int cgi_child(int argc, char **argv) httpd_realloc_str(&cc->outbuf.buffer, &cc->outbuf.size, CONFIG_THTTPD_CGIOUTBUFFERSIZE); if (!cc->outbuf.buffer) { - nlldbg("ERROR: hdr allocation failed\n"); + nllerr("ERROR: hdr allocation failed\n"); goto errout_with_descriptors; } @@ -851,7 +851,7 @@ static int cgi_child(int argc, char **argv) fw = fdwatch_initialize(2); if (!fw) { - nlldbg("ERROR: fdwatch allocation failed\n"); + nllerr("ERROR: fdwatch allocation failed\n"); goto errout_with_outbuffer; } @@ -868,7 +868,7 @@ static int cgi_child(int argc, char **argv) { /* Something went wrong. */ - nlldbg("ERROR: execve %s: %d\n", hc->expnfilename, errno); + nllerr("ERROR: execve %s: %d\n", hc->expnfilename, errno); goto errout_with_watch; } @@ -878,7 +878,7 @@ static int cgi_child(int argc, char **argv) client_data.i = child; if (tmr_create(NULL, cgi_kill, client_data, CONFIG_THTTPD_CGI_TIMELIMIT * 1000L, 0) == NULL) { - nlldbg("ERROR: tmr_create(cgi_kill child) failed\n"); + nllerr("ERROR: tmr_create(cgi_kill child) failed\n"); goto errout_with_watch; } #endif @@ -896,7 +896,7 @@ static int cgi_child(int argc, char **argv) { if (httpd_write(cc->wrfd, &(hc->read_buf[hc->checked_idx]), nbytes) != nbytes) { - nlldbg("ERROR: httpd_write failed\n"); + nllerr("ERROR: httpd_write failed\n"); return 1; } } @@ -1072,10 +1072,10 @@ static void cgi_kill(ClientData client_data, struct timeval *nowP) /* task_delete() is a very evil API. It can leave memory stranded! */ - nlldbg("Killing CGI child: %d\n", pid); + nllerr("Killing CGI child: %d\n", pid); if (task_delete(pid) != 0) { - nlldbg("task_delete() failed: %d\n", errno); + nllerr("task_delete() failed: %d\n", errno); } } #endif diff --git a/nshlib/nsh_netinit.c b/nshlib/nsh_netinit.c index 0f4d8504e..0643d2c0e 100644 --- a/nshlib/nsh_netinit.c +++ b/nshlib/nsh_netinit.c @@ -366,7 +366,7 @@ static void nsh_netinit_signal(int signo, FAR siginfo_t *siginfo, /* What is the count on the semaphore? Don't over-post */ ret = sem_getvalue(&g_notify_sem, &semcount); - nlldbg("Entry: semcount=%d\n", semcount); + nllerr("Entry: semcount=%d\n", semcount); if (ret == OK && semcount <= 0) { diff --git a/platform/arduino-due/sam_cxxinitialize.c b/platform/arduino-due/sam_cxxinitialize.c index 27ccfea79..298d08cf4 100644 --- a/platform/arduino-due/sam_cxxinitialize.c +++ b/platform/arduino-due/sam_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/cloudctrl/stm32_cxxinitialize.c b/platform/cloudctrl/stm32_cxxinitialize.c index b6685f38f..08703feb0 100644 --- a/platform/cloudctrl/stm32_cxxinitialize.c +++ b/platform/cloudctrl/stm32_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -70,7 +70,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/fire-stm32v2/stm32_cxxinitialize.c b/platform/fire-stm32v2/stm32_cxxinitialize.c index fc5dd7c1d..2da95e1b4 100644 --- a/platform/fire-stm32v2/stm32_cxxinitialize.c +++ b/platform/fire-stm32v2/stm32_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/mikroe-stm32f4/stm32_cxxinitialize.c b/platform/mikroe-stm32f4/stm32_cxxinitialize.c index 2e83a5d1c..46820cfa3 100644 --- a/platform/mikroe-stm32f4/stm32_cxxinitialize.c +++ b/platform/mikroe-stm32f4/stm32_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/nucleo-144/stm32_cxxinitialize.c b/platform/nucleo-144/stm32_cxxinitialize.c index 1970d880f..4dcffedcf 100644 --- a/platform/nucleo-144/stm32_cxxinitialize.c +++ b/platform/nucleo-144/stm32_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -70,7 +70,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/nucleo-f303re/stm32_cxxinitialize.c b/platform/nucleo-f303re/stm32_cxxinitialize.c index 6dbe6f2bf..5b36cf735 100644 --- a/platform/nucleo-f303re/stm32_cxxinitialize.c +++ b/platform/nucleo-f303re/stm32_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/nucleo-f4x1re/stm32_cxxinitialize.c b/platform/nucleo-f4x1re/stm32_cxxinitialize.c index 933102b0c..a42e5b48b 100644 --- a/platform/nucleo-f4x1re/stm32_cxxinitialize.c +++ b/platform/nucleo-f4x1re/stm32_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/nucleo-l476rg/stm32_cxxinitialize.c b/platform/nucleo-l476rg/stm32_cxxinitialize.c index ace93d39e..fcdd4f9d6 100644 --- a/platform/nucleo-l476rg/stm32_cxxinitialize.c +++ b/platform/nucleo-l476rg/stm32_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/olimex-stm32-h405/stm32_cxxinitialize.c b/platform/olimex-stm32-h405/stm32_cxxinitialize.c index 05e6248c8..0edd262fd 100644 --- a/platform/olimex-stm32-h405/stm32_cxxinitialize.c +++ b/platform/olimex-stm32-h405/stm32_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/olimex-stm32-h407/stm32_cxxinitialize.c b/platform/olimex-stm32-h407/stm32_cxxinitialize.c index 98c551164..95ff79b7f 100644 --- a/platform/olimex-stm32-h407/stm32_cxxinitialize.c +++ b/platform/olimex-stm32-h407/stm32_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/olimex-stm32-p207/stm32_cxxinitialize.c b/platform/olimex-stm32-p207/stm32_cxxinitialize.c index 6286cba68..3e129c18b 100644 --- a/platform/olimex-stm32-p207/stm32_cxxinitialize.c +++ b/platform/olimex-stm32-p207/stm32_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/olimexino-stm32/stm32_cxxinitialize.c b/platform/olimexino-stm32/stm32_cxxinitialize.c index ec4f4393a..fc4cc71b3 100644 --- a/platform/olimexino-stm32/stm32_cxxinitialize.c +++ b/platform/olimexino-stm32/stm32_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/pcduino-a10/a1x_cxxinitialize.c b/platform/pcduino-a10/a1x_cxxinitialize.c index ce50f2180..f1be61097 100644 --- a/platform/pcduino-a10/a1x_cxxinitialize.c +++ b/platform/pcduino-a10/a1x_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/sabre-6quad/imx_cxxinitialize.c b/platform/sabre-6quad/imx_cxxinitialize.c index b4bc3698a..da4ddcc81 100644 --- a/platform/sabre-6quad/imx_cxxinitialize.c +++ b/platform/sabre-6quad/imx_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/sam3u-ek/sam_cxxinitialized.c b/platform/sam3u-ek/sam_cxxinitialized.c index 47f686ddf..7bdb6495e 100644 --- a/platform/sam3u-ek/sam_cxxinitialized.c +++ b/platform/sam3u-ek/sam_cxxinitialized.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/sam4e-ek/sam_cxxinitialize.c b/platform/sam4e-ek/sam_cxxinitialize.c index b0abe5b26..a0d513f6c 100644 --- a/platform/sam4e-ek/sam_cxxinitialize.c +++ b/platform/sam4e-ek/sam_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/sam4l-xplained/sam_cxxinitialize.c b/platform/sam4l-xplained/sam_cxxinitialize.c index 7f473e993..676a134d5 100644 --- a/platform/sam4l-xplained/sam_cxxinitialize.c +++ b/platform/sam4l-xplained/sam_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/sam4s-xplained-pro/sam_cxxinitialize.c b/platform/sam4s-xplained-pro/sam_cxxinitialize.c index 8d55c47fa..0a35ca436 100644 --- a/platform/sam4s-xplained-pro/sam_cxxinitialize.c +++ b/platform/sam4s-xplained-pro/sam_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/sam4s-xplained/sam_cxxinitialize.c b/platform/sam4s-xplained/sam_cxxinitialize.c index 54e4afa71..8e696d725 100644 --- a/platform/sam4s-xplained/sam_cxxinitialize.c +++ b/platform/sam4s-xplained/sam_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/sama5d2-xult/sam_cxxinitialize.c b/platform/sama5d2-xult/sam_cxxinitialize.c index a47f0c188..f2f41f147 100644 --- a/platform/sama5d2-xult/sam_cxxinitialize.c +++ b/platform/sama5d2-xult/sam_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/sama5d3-xplained/sam_cxxinitialize.c b/platform/sama5d3-xplained/sam_cxxinitialize.c index 20f87c4bf..827938d6c 100644 --- a/platform/sama5d3-xplained/sam_cxxinitialize.c +++ b/platform/sama5d3-xplained/sam_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/sama5d3x-ek/sam_cxxinitialize.c b/platform/sama5d3x-ek/sam_cxxinitialize.c index 0d475aae3..0b261511c 100644 --- a/platform/sama5d3x-ek/sam_cxxinitialize.c +++ b/platform/sama5d3x-ek/sam_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/sama5d4-ek/sam_cxxinitialize.c b/platform/sama5d4-ek/sam_cxxinitialize.c index de17676ec..d8f08b4aa 100644 --- a/platform/sama5d4-ek/sam_cxxinitialize.c +++ b/platform/sama5d4-ek/sam_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/samd20-xplained/sam_cxxinitialize.c b/platform/samd20-xplained/sam_cxxinitialize.c index 1bd6fc053..5bb2096af 100644 --- a/platform/samd20-xplained/sam_cxxinitialize.c +++ b/platform/samd20-xplained/sam_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/samd21-xplained/sam_cxxinitialize.c b/platform/samd21-xplained/sam_cxxinitialize.c index 29d550fcf..ed2cab169 100644 --- a/platform/samd21-xplained/sam_cxxinitialize.c +++ b/platform/samd21-xplained/sam_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/same70-xplained/sam_cxxinitialize.c b/platform/same70-xplained/sam_cxxinitialize.c index ec63fcd1e..1277dfda5 100644 --- a/platform/same70-xplained/sam_cxxinitialize.c +++ b/platform/same70-xplained/sam_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/saml21-xplained/sam_cxxinitialize.c b/platform/saml21-xplained/sam_cxxinitialize.c index a60c88967..a523435d5 100644 --- a/platform/saml21-xplained/sam_cxxinitialize.c +++ b/platform/saml21-xplained/sam_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/samv71-xult/sam_cxxinitialize.c b/platform/samv71-xult/sam_cxxinitialize.c index 865d6e60c..a1ee79aaa 100644 --- a/platform/samv71-xult/sam_cxxinitialize.c +++ b/platform/samv71-xult/sam_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/shenzhou/stm32_cxxinitialize.c b/platform/shenzhou/stm32_cxxinitialize.c index 2498378b7..ebc1c9b31 100644 --- a/platform/shenzhou/stm32_cxxinitialize.c +++ b/platform/shenzhou/stm32_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/spark/stm32_cxxinitialize.c b/platform/spark/stm32_cxxinitialize.c index fa33d21f8..bc9597697 100644 --- a/platform/spark/stm32_cxxinitialize.c +++ b/platform/spark/stm32_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/stm3220g-eval/stm32_cxxinitialize.c b/platform/stm3220g-eval/stm32_cxxinitialize.c index c3aa574a3..7d1e6b6cb 100644 --- a/platform/stm3220g-eval/stm32_cxxinitialize.c +++ b/platform/stm3220g-eval/stm32_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/stm3240g-eval/stm32_cxxinitialize.c b/platform/stm3240g-eval/stm32_cxxinitialize.c index 0917f658d..79194605b 100644 --- a/platform/stm3240g-eval/stm32_cxxinitialize.c +++ b/platform/stm3240g-eval/stm32_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/stm32f3discovery/stm32_cxxinitialize.c b/platform/stm32f3discovery/stm32_cxxinitialize.c index 59f73ba07..d55f25d17 100644 --- a/platform/stm32f3discovery/stm32_cxxinitialize.c +++ b/platform/stm32f3discovery/stm32_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/stm32f429i-disco/stm32_cxxinitialize.c b/platform/stm32f429i-disco/stm32_cxxinitialize.c index 3ffd8a20e..de505735c 100644 --- a/platform/stm32f429i-disco/stm32_cxxinitialize.c +++ b/platform/stm32f429i-disco/stm32_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/stm32f4discovery/stm32_cxxinitialize.c b/platform/stm32f4discovery/stm32_cxxinitialize.c index 9a2353f8e..f51c75ad7 100644 --- a/platform/stm32f4discovery/stm32_cxxinitialize.c +++ b/platform/stm32f4discovery/stm32_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/stm32f746g-disco/stm32_cxxinitialize.c b/platform/stm32f746g-disco/stm32_cxxinitialize.c index 47f3e3ae0..5d3f195be 100644 --- a/platform/stm32f746g-disco/stm32_cxxinitialize.c +++ b/platform/stm32f746g-disco/stm32_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/stm32l476vg-disco/stm32_cxxinitialize.c b/platform/stm32l476vg-disco/stm32_cxxinitialize.c index 096eab010..4b685ab18 100644 --- a/platform/stm32l476vg-disco/stm32_cxxinitialize.c +++ b/platform/stm32l476vg-disco/stm32_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/stm32ldiscovery/stm32_cxxinitialize.c b/platform/stm32ldiscovery/stm32_cxxinitialize.c index abe57211a..07cb29ebd 100644 --- a/platform/stm32ldiscovery/stm32_cxxinitialize.c +++ b/platform/stm32ldiscovery/stm32_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/teensy-lc/kl_cxxinitialize.c b/platform/teensy-lc/kl_cxxinitialize.c index 3da6bf4e6..98bfa067e 100644 --- a/platform/teensy-lc/kl_cxxinitialize.c +++ b/platform/teensy-lc/kl_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/platform/viewtool-stm32f107/stm32_cxxinitialize.c b/platform/viewtool-stm32f107/stm32_cxxinitialize.c index 808f8e5e4..892e8ceae 100644 --- a/platform/viewtool-stm32f107/stm32_cxxinitialize.c +++ b/platform/viewtool-stm32f107/stm32_cxxinitialize.c @@ -59,7 +59,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg -# define cxxlldbg lldbg +# define cxxllerr llerr # ifdef CONFIG_DEBUG_INFO # define cxxinfo info # define cxxllinfo llinfo @@ -69,7 +69,7 @@ # endif #else # define cxxdbg(x...) -# define cxxlldbg(x...) +# define cxxllerr(x...) # define cxxinfo(x...) # define cxxllinfo(x...) #endif diff --git a/system/ubloxmodem/ubloxmodem_main.c b/system/ubloxmodem/ubloxmodem_main.c index d5beedd90..16c05994e 100644 --- a/system/ubloxmodem/ubloxmodem_main.c +++ b/system/ubloxmodem/ubloxmodem_main.c @@ -61,12 +61,12 @@ #ifdef CONFIG_MODEM_U_BLOX_DEBUG # define m_dbg dbg # define m_info info -# define m_vlldbg lldbg +# define m_vllerr llerr # define m_vllinfo llinfo #else # define m_dbg(x...) # define m_info(x...) -# define m_lldbg(x...) +# define m_llerr(x...) # define m_llinfo(x...) #endif