From 584a2ed9678fc98bf9ff372073221308dce6ade6 Mon Sep 17 00:00:00 2001 From: Cosmin Tanislav Date: Fri, 27 Jan 2023 15:56:49 +0200 Subject: [PATCH] dubai: remove motorola fingerprint interface Has been moved to motorola hardware repo. Change-Id: I77c05ee5b31e80aa0a4765701065957d5328ed47 --- interfaces/motorola/Android.bp | 4 --- .../biometric/fingerprint/1.0/Android.bp | 16 ---------- .../fingerprint/1.0/IMotoFingerPrint.hal | 23 -------------- .../1.0/IMotoFingerPrintSensorTest.hal | 28 ----------------- .../biometric/fingerprint/1.0/types.hal | 31 ------------------- 5 files changed, 102 deletions(-) delete mode 100644 interfaces/motorola/Android.bp delete mode 100644 interfaces/motorola/hardware/biometric/fingerprint/1.0/Android.bp delete mode 100644 interfaces/motorola/hardware/biometric/fingerprint/1.0/IMotoFingerPrint.hal delete mode 100644 interfaces/motorola/hardware/biometric/fingerprint/1.0/IMotoFingerPrintSensorTest.hal delete mode 100644 interfaces/motorola/hardware/biometric/fingerprint/1.0/types.hal diff --git a/interfaces/motorola/Android.bp b/interfaces/motorola/Android.bp deleted file mode 100644 index 114bca5..0000000 --- a/interfaces/motorola/Android.bp +++ /dev/null @@ -1,4 +0,0 @@ -hidl_package_root { - name: "com.motorola", - path: "device/motorola/dubai/interfaces/motorola", -} diff --git a/interfaces/motorola/hardware/biometric/fingerprint/1.0/Android.bp b/interfaces/motorola/hardware/biometric/fingerprint/1.0/Android.bp deleted file mode 100644 index ff9d716..0000000 --- a/interfaces/motorola/hardware/biometric/fingerprint/1.0/Android.bp +++ /dev/null @@ -1,16 +0,0 @@ -// This file is autogenerated by hidl-gen -Landroidbp. - -hidl_interface { - name: "com.motorola.hardware.biometric.fingerprint@1.0", - root: "com.motorola", - srcs: [ - "IMotoFingerPrint.hal", - "IMotoFingerPrintSensorTest.hal", - "types.hal", - ], - interfaces: [ - "android.hidl.base@1.0", - ], - gen_java: true, -} - diff --git a/interfaces/motorola/hardware/biometric/fingerprint/1.0/IMotoFingerPrint.hal b/interfaces/motorola/hardware/biometric/fingerprint/1.0/IMotoFingerPrint.hal deleted file mode 100644 index a54e561..0000000 --- a/interfaces/motorola/hardware/biometric/fingerprint/1.0/IMotoFingerPrint.hal +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Copyright (C) 2022 The Android Open Source Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.motorola.hardware.biometric.fingerprint@1.0; - -interface IMotoFingerPrint { - -sendFodEvent(IMotFodEventType eventType, vec eventId) generates (IMotFodEventResult result, vec eventId); - -}; diff --git a/interfaces/motorola/hardware/biometric/fingerprint/1.0/IMotoFingerPrintSensorTest.hal b/interfaces/motorola/hardware/biometric/fingerprint/1.0/IMotoFingerPrintSensorTest.hal deleted file mode 100644 index f75a15e..0000000 --- a/interfaces/motorola/hardware/biometric/fingerprint/1.0/IMotoFingerPrintSensorTest.hal +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright (C) 2022 The Android Open Source Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.motorola.hardware.biometric.fingerprint@1.0; - -interface IMotoFingerPrintSensorTest { - -getSensorInfo(); -checkerboardTest(); -finishSensorTest(int32_t id); -imagequalityTest(); -otpvalidationTest(); -selfTest(); - -}; diff --git a/interfaces/motorola/hardware/biometric/fingerprint/1.0/types.hal b/interfaces/motorola/hardware/biometric/fingerprint/1.0/types.hal deleted file mode 100644 index e91a8c5..0000000 --- a/interfaces/motorola/hardware/biometric/fingerprint/1.0/types.hal +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (C) 2022 The Android Open Source Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.motorola.hardware.biometric.fingerprint@1.0; - -enum IMotFodEventType : int32_t { - FINGER_DOWN = 0, - FINGER_UP = 1, - CANCEL = 2, - EXTEND_1 = 3, - EXTEND_2 = 4, - UNKNOWN = 5, -}; - -enum IMotFodEventResult : int32_t { - RESULT_OK = 0, - RESULT_ERR = 1, -};