diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2022-08-21 22:26:39 +0000 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2022-08-21 22:26:39 +0000 |
commit | a3dc4d80a899b28130729721b90a0506e44b8d76 (patch) | |
tree | a13eee717c47084c545d4e3007d9aff33062257d /sys/src/9/imx8 | |
parent | 6c8de2713c34622799504f9817afe6876c5621cf (diff) |
imx8: use print() instead of iprint() for cpuidprint(), so it gets logged in kmesg
Diffstat (limited to 'sys/src/9/imx8')
-rw-r--r-- | sys/src/9/imx8/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/imx8/main.c b/sys/src/9/imx8/main.c index 471d15294..6dcfb0f81 100644 --- a/sys/src/9/imx8/main.c +++ b/sys/src/9/imx8/main.c @@ -248,7 +248,7 @@ mpinit(void) void cpuidprint(void) { - iprint("cpu%d: %dMHz ARM Cortex A53\n", m->machno, m->cpumhz); + print("cpu%d: %dMHz ARM Cortex A53\n", m->machno, m->cpumhz); } static void |