summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Kevin Chyn <kchyn@google.com> 2019-06-19 13:48:18 -0700
committer Kevin Chyn <kchyn@google.com> 2019-06-19 20:51:52 +0000
commit7733b759b70066d73b56ff77bfe64804be3c00a0 (patch)
tree9648a944c608d865efa5b11ae4606df0792d1e09
parent8c609b6283fbff3fe3416d205569f7b2d9ddd7db (diff)
Fix alphabetical ordering of HAL_INTERFACES_OF_INTEREST
Bug: 126802513 Test: Builds Change-Id: I84e006014d47a4467a7ee696c671115de8202f70
-rw-r--r--services/core/java/com/android/server/Watchdog.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/services/core/java/com/android/server/Watchdog.java b/services/core/java/com/android/server/Watchdog.java
index cb221519bb2b..5b9c78f6e8ea 100644
--- a/services/core/java/com/android/server/Watchdog.java
+++ b/services/core/java/com/android/server/Watchdog.java
@@ -103,6 +103,7 @@ public class Watchdog extends Thread {
public static final List<String> HAL_INTERFACES_OF_INTEREST = Arrays.asList(
"android.hardware.audio@2.0::IDevicesFactory",
"android.hardware.audio@4.0::IDevicesFactory",
+ "android.hardware.biometrics.face@1.0::IBiometricsFace",
"android.hardware.bluetooth@1.0::IBluetoothHci",
"android.hardware.camera.provider@2.4::ICameraProvider",
"android.hardware.graphics.allocator@2.0::IAllocator",
@@ -113,8 +114,7 @@ public class Watchdog extends Thread {
"android.hardware.media.omx@1.0::IOmxStore",
"android.hardware.power.stats@1.0::IPowerStats",
"android.hardware.sensors@1.0::ISensors",
- "android.hardware.vr@1.0::IVr",
- "android.hardware.biometrics.face@1.0::IBiometricsFace"
+ "android.hardware.vr@1.0::IVr"
);
static Watchdog sWatchdog;