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

Commit 11eb5980 authored by Chris Manton's avatar Chris Manton Committed by Automerger Merge Worker
Browse files

Decouple stack/btm/btm_int_types::BTM_PM_ST_ from btm deps am: cec3fea9 am: 7fc25cd4

Original change: https://android-review.googlesource.com/c/platform/system/bt/+/1527462

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I7a4be1e74f40c2e1599da7235a06368a16595588
parents cc4ac992 7fc25cd4
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -78,10 +78,10 @@ typedef struct {
} tBTM_CFG;

typedef enum : uint8_t {
  BTM_PM_ST_ACTIVE = BTM_PM_STS_ACTIVE,
  BTM_PM_ST_HOLD = BTM_PM_STS_HOLD,
  BTM_PM_ST_SNIFF = BTM_PM_STS_SNIFF,
  BTM_PM_ST_PARK = BTM_PM_STS_PARK,
  BTM_PM_ST_ACTIVE = HCI_MODE_ACTIVE,  // 0x00
  BTM_PM_ST_HOLD = HCI_MODE_HOLD,      // 0x01
  BTM_PM_ST_SNIFF = HCI_MODE_SNIFF,    // 0x02
  BTM_PM_ST_PARK = HCI_MODE_PARK,      // 0x03
  BTM_PM_ST_PENDING = BTM_PM_STS_PENDING,
  BTM_PM_ST_INVALID = 0xFF
} tPOWER_MODE_STATE;