Revert^2 "Update HIDL EventFlagBits to have the correct values"

This reverts commit 98444463f3.

Reason for revert: needed to be submitted together with libfmq CL

Change-Id: Iad7cce6a38a7750ad88530c7a10521f8ff3d3ef8
Test: atest fmq_test fmq_unit_tests
Bug: 352396902
This commit is contained in:
Devin Moore
2024-07-12 01:20:35 +00:00
committed by Gerrit Code Review
parent 98444463f3
commit 44e0d476da

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,
};
/**