drivers: icm42688: fix missing compile time log level

The icm42688 driver RTIO stream module does not specify a compile time log
level. Thus, CONFIG_SENSOR_LOG_LEVEL_DBG is ignored. Fixed by specifying
log level on log module declaration.

Signed-off-by: Yau-ming Leung <ymleung314@gmail.com>
This commit is contained in:
Yau-ming Leung 2025-04-19 22:46:21 +08:00 committed by Fabio Baltieri
commit bd0a0011ab

View file

@ -11,7 +11,7 @@
#include "icm42688_reg.h"
#include "icm42688_rtio.h"
LOG_MODULE_DECLARE(ICM42688_RTIO);
LOG_MODULE_DECLARE(ICM42688_RTIO, CONFIG_SENSOR_LOG_LEVEL);
void icm42688_submit_stream(const struct device *sensor, struct rtio_iodev_sqe *iodev_sqe)
{