summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author chenkris <chenkris@google.com> 2025-03-03 07:04:56 +0000
committer KRIS CHEN <chenkris@google.com> 2025-03-03 00:32:12 -0800
commit1e3650e6bcbe21bbbed6f384fe038f8fc3896d1b (patch)
tree950e038728e9da28dc7d0f28dcdc6a00400deacd
parent00ff628722f7382ce4b4f8305f9a8f0db529df1d (diff)
dumputils: correct typo for AIDL fingerprint HAL
Bug: 400332885 Flag: EXEMPT bugfix Test: adb shell dumpsys -l | grep -iE "fingerprint" Test: adb bugreport, contains dumps like: ----- pid 1758 at 2025-03-03 14:58:06.698207518+0800 ----- Cmd line: /vendor/bin/hw/android.hardware.biometrics.fingerprint-service ABI: 'arm64' "android.hardwar" sysTid=1758 #00 pc 00000000000caa88 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 825df7d51c665a22c691f12eb7bdf4f6) #01 pc 000000000006b11c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 825df7d51c665a22c691f12eb7bdf4f6) #02 pc 000000000005016c /system/lib64/libbinder.so (android::IPCThreadState::talkWithDriver(bool)+220) (BuildId: 1c3f90f0cb4d3d019554e47ae354a9a0) #03 pc 00000000000567c8 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+152) (BuildId: 1c3f90f0cb4d3d019554e47ae354a9a0) #04 pc 0000000000017990 /vendor/bin/hw/android.hardware.biometrics.fingerprint-service (main+640) (BuildId: 36d9232d0aeaee0e73e76dd3a6730711) #05 pc 0000000000057d28 /apex/com.android.runtime/lib64/bionic/libc.so (__libc_init+120) (BuildId: 825df7d51c665a22c691f12eb7bdf4f6) ----- end 1758 ----- Change-Id: I30c6650155b3a75e578dcfcedf6bdd63a81f154a
-rw-r--r--libs/dumputils/dump_utils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/dumputils/dump_utils.cpp b/libs/dumputils/dump_utils.cpp
index a9bd11e41d..43ee33eb86 100644
--- a/libs/dumputils/dump_utils.cpp
+++ b/libs/dumputils/dump_utils.cpp
@@ -101,7 +101,7 @@ static const std::vector<std::string> aidl_interfaces_to_dump {
"android.hardware.automotive.remoteaccess.IRemoteAccess",
"android.hardware.automotive.vehicle.IVehicle",
"android.hardware.biometrics.face.IBiometricsFace",
- "android.hardware.biometrics.fingerprint.IBiometricsFingerprint",
+ "android.hardware.biometrics.fingerprint.IFingerprint",
"android.hardware.camera.provider.ICameraProvider",
"android.hardware.drm.IDrmFactory",
"android.hardware.graphics.allocator.IAllocator",