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

Commit 7fc25cd4 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

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

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I20d6588eb189a06a48ca10e779f902e3933b0610
parents 421e8e56 cec3fea9
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;