Update HIDL EventFlagBits to have the correct values

These values are swapped from the internal libfmq values.

Test: atest fmq_test
Bug: 352396902
Change-Id: Ib6d444e043fd38daabf51bd3cc3458d0c38fd133
This commit is contained in:
Devin Moore
2024-07-10 22:27:07 +00:00
parent 92f359013c
commit 3df20dea31

View File

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