aboutsummaryrefslogtreecommitdiff
path: root/drivers/mhu_v2/src/mhu_v2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/mhu_v2/src/mhu_v2.cpp')
-rw-r--r--drivers/mhu_v2/src/mhu_v2.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/mhu_v2/src/mhu_v2.cpp b/drivers/mhu_v2/src/mhu_v2.cpp
index eb44a5d..3bcd256 100644
--- a/drivers/mhu_v2/src/mhu_v2.cpp
+++ b/drivers/mhu_v2/src/mhu_v2.cpp
@@ -16,6 +16,8 @@
* limitations under the License.
*/
+#include "ethosu_log.h"
+
#include <mhu_v2.hpp>
#include <cassert>
@@ -195,12 +197,12 @@ void MHUv2::printAIDR(bool tx, bool rx) {
if (tx) {
aidr = getTxAIDR();
a = reinterpret_cast<struct aidr_t *>(&aidr);
- printf("TX MHUv2 reports: Major rev: %d\nMinor rev: %d\n", a->ARCH_MAJOR_REV, a->ARCH_MINOR_REV);
+ LOG_INFO("TX MHUv2 reports: Major rev: %d, Minor rev: %d\n", a->ARCH_MAJOR_REV, a->ARCH_MINOR_REV);
}
if (rx) {
aidr = getRxAIDR();
a = reinterpret_cast<struct aidr_t *>(&aidr);
- printf("RX MHUv2 reports: Major rev: %d\nMinor rev: %d\n", a->ARCH_MAJOR_REV, a->ARCH_MINOR_REV);
+ LOG_INFO("RX MHUv2 reports: Major rev: %d, Minor rev: %d\n", a->ARCH_MAJOR_REV, a->ARCH_MINOR_REV);
}
}