Use new PowerManager API.
Change-Id: I66165d9954e2d1da9204216382a05a873f1393f4
diff --git a/services/powermanager/IPowerManager.cpp b/services/powermanager/IPowerManager.cpp
index a0f19d4..0265df3 100644
--- a/services/powermanager/IPowerManager.cpp
+++ b/services/powermanager/IPowerManager.cpp
@@ -30,7 +30,7 @@
// must be kept in sync with IPowerManager.aidl
enum {
ACQUIRE_WAKE_LOCK = IBinder::FIRST_CALL_TRANSACTION,
- RELEASE_WAKE_LOCK = IBinder::FIRST_CALL_TRANSACTION + 4,
+ RELEASE_WAKE_LOCK = IBinder::FIRST_CALL_TRANSACTION + 1,
};
class BpPowerManager : public BpInterface<IPowerManager>
@@ -46,11 +46,10 @@
Parcel data, reply;
data.writeInterfaceToken(IPowerManager::getInterfaceDescriptor());
- data.writeInt32(flags);
data.writeStrongBinder(lock);
+ data.writeInt32(flags);
data.writeString16(tag);
- // no WorkSource passed
- data.writeInt32(0);
+ data.writeInt32(0); // no WorkSource
return remote()->transact(ACQUIRE_WAKE_LOCK, data, &reply);
}