fix(battery): Only log if finding battery device failed
Co-authored-by: Pete Johanson <peter@peterjohanson.com>
This commit is contained in:
parent
953de71646
commit
89b8bfc95d
1 changed files with 1 additions and 3 deletions
|
@ -55,9 +55,7 @@ K_TIMER_DEFINE(battery_timer, zmk_battery_timer, NULL);
|
|||
static int zmk_battery_init(struct device *_arg) {
|
||||
battery = device_get_binding("BATTERY");
|
||||
|
||||
if (battery) {
|
||||
LOG_DBG("Found battery reporting device.");
|
||||
} else {
|
||||
if (battery == NULL) {
|
||||
LOG_DBG("No battery device labelled BATTERY found.");
|
||||
return -ENODEV;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue