From: Jan Altensen Date: Wed, 7 Aug 2019 09:33:32 +0000 (+0200) Subject: samsung: hidl: light: battery has lowest priority X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=7ffb495501913cb6d725a1502c889fa8ecacffbd;p=GitHub%2FLineageOS%2Fandroid_hardware_samsung.git samsung: hidl: light: battery has lowest priority Change-Id: I90d61439f8a431f1836e439d34764b7eb7983db9 --- diff --git a/hidl/light/Light.cpp b/hidl/light/Light.cpp index cc5e5d4..3e9b17f 100644 --- a/hidl/light/Light.cpp +++ b/hidl/light/Light.cpp @@ -125,10 +125,7 @@ void Light::setNotificationLED() { bool bln = false; #endif - if (mBatteryState.color & COLOR_MASK) { - adjusted_brightness = LED_BRIGHTNESS_BATTERY; - state = mBatteryState; - } else if (mNotificationState.color & COLOR_MASK) { + if (mNotificationState.color & COLOR_MASK) { adjusted_brightness = LED_BRIGHTNESS_NOTIFICATION; state = mNotificationState; #ifdef LED_BLN_NODE @@ -144,6 +141,9 @@ void Light::setNotificationLED() { if (state.flashMode == Flash::NONE) { state.color = 0; } + } else if (mBatteryState.color & COLOR_MASK) { + adjusted_brightness = LED_BRIGHTNESS_BATTERY; + state = mBatteryState; } else { set(LED_BLINK_NODE, "0x00000000 0 0"); return;