rtc: rtc_mcux: Fix build issue with logging change
When the driver was changed to use the new logging subsystem, it used LOG_DOMAIN_REGISTER should have been LOG_MODULE_REGISTER. Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
parent
d696a56cf4
commit
e46b9c0e49
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
#define LOG_LEVEL CONFIG_RTC_LOG_LEVEL
|
#define LOG_LEVEL CONFIG_RTC_LOG_LEVEL
|
||||||
#include <logging/log.h>
|
#include <logging/log.h>
|
||||||
LOG_DOMAIN_REGISTER(rtc_mcux);
|
LOG_MODULE_REGISTER(rtc_mcux);
|
||||||
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <device.h>
|
#include <device.h>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue