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:
Kumar Gala 2018-10-11 10:10:30 -05:00 committed by Anas Nashif
commit e46b9c0e49

View file

@ -6,7 +6,7 @@
#define LOG_LEVEL CONFIG_RTC_LOG_LEVEL
#include <logging/log.h>
LOG_DOMAIN_REGISTER(rtc_mcux);
LOG_MODULE_REGISTER(rtc_mcux);
#include <errno.h>
#include <device.h>