Skip to content
Snippets Groups Projects
Commit 3a62b6fc authored by Felix Paul Kühne's avatar Felix Paul Kühne
Browse files

macosx/backlight control: turn error into warning as this is normal for MacBooks with a touchbar

parent 1e2dfd6a
No related branches found
No related tags found
No related merge requests found
......@@ -63,7 +63,7 @@ enum {
io_service_t serviceObject = IOServiceGetMatchingService(kIOMasterPortDefault, IOServiceMatching("AppleLMUController"));
if (!serviceObject) {
msg_Err(getIntf(), "Failed to get an AppleLMUController service, keyboard dimming will not work");
msg_Warn(getIntf(), "Failed to get an AppleLMUController service, keyboard dimming will not work");
return 0;
}
......@@ -71,7 +71,7 @@ enum {
IOObjectRelease(serviceObject);
if (kr != KERN_SUCCESS) {
msg_Err(getIntf(), "Failed to open an AppleLMUController service, keyboard dimming will not work");
msg_Warn(getIntf(), "Failed to open an AppleLMUController service, keyboard dimming will not work");
return 0;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment