refactor: Remove v1 logging vestiges.

This commit is contained in:
Peter Johanson
2023-01-17 20:36:34 -05:00
committed by Pete Johanson
parent e84b4299b5
commit 062f94d014
11 changed files with 39 additions and 40 deletions

View File

@@ -43,7 +43,7 @@ static int kscan_composite_enable_callback(const struct device *dev) {
const struct device *dev = device_get_binding(cfg->label);
if (!dev) {
LOG_WRN("Failed to load child kscan device %s", log_strdup(cfg->label));
LOG_WRN("Failed to load child kscan device %s", cfg->label);
continue;
}
kscan_enable_callback(dev);
@@ -57,7 +57,7 @@ static int kscan_composite_disable_callback(const struct device *dev) {
const struct device *dev = device_get_binding(cfg->label);
if (!dev) {
LOG_WRN("Failed to load child kscan device %s", log_strdup(cfg->label));
LOG_WRN("Failed to load child kscan device %s", cfg->label);
continue;
}
kscan_disable_callback(dev);