fingerprint: Reset dimlayer HBM + fp press state on error

The way the fingerprint service handles FINGERPRINT_ERROR messages
allows for situations where the user can end up turning off the screen
while notify_fppress is set to 1. This results in situations where the
screen backlight does not turn on at all when turning on the panel,
which is not an ideal user experience.

Fix this by calling `setDimlayerHbm(0)` and `setFpPress(0)` when
handling FINGERPRINT_ERROR messages.

Change-Id: Ic2754249083c30a9b3b150b825357d894814fe84
This commit is contained in:
jabashque
2022-05-18 22:22:23 -07:00
committed by LuK1337
parent 2fcee31656
commit dfba74a283

View File

@@ -116,6 +116,8 @@ Return<void> BiometricsFingerprint::onAuthenticated(uint64_t deviceId, uint32_t
Return<void> BiometricsFingerprint::onError(uint64_t deviceId, FingerprintError error,
int32_t vendorCode) {
setDimlayerHbm(0);
setFpPress(0);
return mClientCallback->onError(deviceId, error, vendorCode);
}