summaryrefslogtreecommitdiff
path: root/chip/lm4/lpc.c
diff options
context:
space:
mode:
Diffstat (limited to 'chip/lm4/lpc.c')
-rw-r--r--chip/lm4/lpc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/chip/lm4/lpc.c b/chip/lm4/lpc.c
index ef273be8b8..8f8c5434a4 100644
--- a/chip/lm4/lpc.c
+++ b/chip/lm4/lpc.c
@@ -52,7 +52,7 @@
/* Console output macros */
#define CPUTS(outstr) cputs(CC_LPC, outstr)
-#define CPRINTF(format, args...) cprintf(CC_LPC, format, ## args)
+#define CPRINTS(format, args...) cprints(CC_LPC, format, ## args)
#define LPC_SYSJUMP_TAG 0x4c50 /* "LP" */
@@ -158,7 +158,7 @@ static void lpc_generate_smi(void)
gpio_set_level(GPIO_PCH_SMI_L, 1);
if (host_events & event_mask[LPC_HOST_EVENT_SMI])
- CPRINTF("[%T smi 0x%08x]\n",
+ CPRINTS("smi 0x%08x",
host_events & event_mask[LPC_HOST_EVENT_SMI]);
}
@@ -181,7 +181,7 @@ static void lpc_generate_sci(void)
#endif
if (host_events & event_mask[LPC_HOST_EVENT_SCI])
- CPRINTF("[%T sci 0x%08x]\n",
+ CPRINTS("sci 0x%08x",
host_events & event_mask[LPC_HOST_EVENT_SCI]);
}
@@ -622,7 +622,7 @@ void lpc_interrupt(void)
LM4_LPC_ST(i) &= ~LM4_LPC_ST_FRMH;
}
- CPRINTF("[%T LPC RESET# %sasserted]\n",
+ CPRINTS("LPC RESET# %sasserted",
lpc_get_pltrst_asserted() ? "" : "de");
}
}