Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fdf32f00 authored by David Anderson's avatar David Anderson Committed by android-build-merger
Browse files

Merge "IBootControl: Use new defaultPassthroughServiceImplementation...

Merge "IBootControl: Use new defaultPassthroughServiceImplementation signature." am: 240c7261 am: b1ec4c6a
am: decc075e

Change-Id: I14c96f8da4c6bdff019809cf926fe24ec84512ed
parents 8bbb6bc1 decc075e
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -15,12 +15,13 @@
 */
#define LOG_TAG "android.hardware.boot@1.1-service"

#include <android/hardware/boot/1.0/IBootControl.h>
#include <android/hardware/boot/1.1/IBootControl.h>
#include <hidl/LegacySupport.h>

using android::hardware::defaultPassthroughServiceImplementation;
using ::android::hardware::boot::V1_0::IBootControl;
using IBootControl_V1_0 = android::hardware::boot::V1_0::IBootControl;
using IBootControl_V1_1 = android::hardware::boot::V1_1::IBootControl;

int main(int /* argc */, char* /* argv */[]) {
    return defaultPassthroughServiceImplementation<IBootControl>();
    return defaultPassthroughServiceImplementation<IBootControl_V1_0, IBootControl_V1_1>();
}