Merge "Revert "Update HIDL EventFlagBits to have the correct values"" into main

This commit is contained in:
Priyanka Advani
2024-07-11 22:19:43 +00:00
committed by Gerrit Code Review

View File

@@ -18,8 +18,8 @@ package android.hardware.tests.msgq@1.0;
interface ITestMsgQ { interface ITestMsgQ {
enum EventFlagBits : uint32_t { enum EventFlagBits : uint32_t {
FMQ_NOT_FULL = 1 << 0, FMQ_NOT_EMPTY = 1 << 0,
FMQ_NOT_EMPTY = 1 << 1, FMQ_NOT_FULL = 1 << 1,
}; };
/** /**