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

Commit 59ac2ce7 authored by Chris Manton's avatar Chris Manton Committed by Automerger Merge Worker
Browse files

Canonicalize btif/src/btif_gatt::btgattInterface am: 18b663da am: 50ebb9fb

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

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I52f5cb48dded8b7677992a0a75f5de1d0c2de2cb
parents e0a4fb19 50ebb9fb
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -75,15 +75,15 @@ static void btif_gatt_cleanup(void) {
}

static btgatt_interface_t btgattInterface = {
    sizeof(btgattInterface),
    .size = sizeof(btgattInterface),

    btif_gatt_init,
    btif_gatt_cleanup,
    .init = btif_gatt_init,
    .cleanup = btif_gatt_cleanup,

    &btgattClientInterface,
    &btgattServerInterface,
    nullptr,  // filled in btif_gatt_get_interface
    nullptr   // filled in btif_gatt_get_interface
    .client = &btgattClientInterface,
    .server = &btgattServerInterface,
    .scanner = nullptr,    // filled in btif_gatt_get_interface
    .advertiser = nullptr  // filled in btif_gatt_get_interface
};

/*******************************************************************************