firmware: octsimtest: use TRACE_* macros instead of direct printf

Change-Id: I41864bc2f64905a4f2ccb50769b1840e8a490c76
This commit is contained in:
Harald Welte
2021-06-03 13:54:47 +02:00
parent 731e199fc4
commit e2971dee2a
2 changed files with 5 additions and 5 deletions

View File

@@ -54,7 +54,7 @@ void mux_init(void)
/* set the slot selection mux */
int mux_set_slot(uint8_t s)
{
printf("%s(%u)\r\n", __func__, s);
TRACE_INFO("%s(%u)\r\n", __func__, s);
if (s > 7)
return -EINVAL;
@@ -90,7 +90,7 @@ int mux_get_slot(void)
/* set the frequency divider mux */
void mux_set_freq(uint8_t s)
{
printf("%s(%u)\r\n", __func__, s);
TRACE_INFO("%s(%u)\r\n", __func__, s);
/* no need for 'break before make' here, this would also affect
* the SIM card I/O signals which we don't want to disturb */