diff options
author | Sebastiano Barezzi <barezzisebastiano@gmail.com> | 2021-09-13 00:39:04 +0200 |
---|---|---|
committer | Sebastiano Barezzi <barezzisebastiano@gmail.com> | 2021-09-13 15:59:52 +0200 |
commit | 3bccf3de98a83789060dbf6e040d9356afebe7b6 (patch) | |
tree | 277268a75cad534543c963eaf64d2163a719bb67 /ir/service.cpp | |
parent | 492d4b7a88f9dc15e3a0605e3329d77a6c72a47c (diff) |
sdm660-common: Import default IR HIDL
* From https://github.com/LineageOS/android_hardware_interfaces/commit/1ee53cfa566471153661b2715ade8a9a5d525776
Change-Id: I7116f4becb57e684396ef1e6608f9c760ab82459
Diffstat (limited to 'ir/service.cpp')
-rw-r--r-- | ir/service.cpp | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/ir/service.cpp b/ir/service.cpp new file mode 100644 index 0000000..10f6b7d --- /dev/null +++ b/ir/service.cpp @@ -0,0 +1,27 @@ +/* + * Copyright 2016 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. + */ + +#define LOG_TAG "android.hardware.ir@1.0-service" + +#include <android/hardware/ir/1.0/IConsumerIr.h> +#include <hidl/LegacySupport.h> + +using android::hardware::ir::V1_0::IConsumerIr; +using android::hardware::defaultPassthroughServiceImplementation; + +int main() { + return defaultPassthroughServiceImplementation<IConsumerIr>(); +} |