summaryrefslogtreecommitdiff
path: root/common/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/main.c')
-rw-r--r--common/main.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/common/main.c b/common/main.c
index 12d9f9ec5b..e60a57f6bc 100644
--- a/common/main.c
+++ b/common/main.c
@@ -30,6 +30,7 @@
/* Console output macros */
#define CPUTS(outstr) cputs(CC_SYSTEM, outstr)
#define CPRINTF(format, args...) cprintf(CC_SYSTEM, format, ## args)
+#define CPRINTS(format, args...) cprints(CC_SYSTEM, format, ## args)
test_mockable int main(void)
{
@@ -100,7 +101,7 @@ test_mockable int main(void)
uart_init();
if (system_jumped_to_this_image()) {
- CPRINTF("[%T UART initialized after sysjump]\n");
+ CPRINTS("UART initialized after sysjump");
} else {
CPUTS("\n\n--- UART initialized after reboot ---\n");
CPUTS("[Reset cause: ");
@@ -144,7 +145,7 @@ test_mockable int main(void)
* into account the time before timer_init(), but it'll at least catch
* the majority of the time.
*/
- CPRINTF("[%T Inits done]\n");
+ CPRINTS("Inits done");
/* Launch task scheduling (never returns) */
return task_start();