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

Commit 50ebb9fb authored by Chris Manton's avatar Chris Manton Committed by Automerger Merge Worker
Browse files

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

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

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I075f0995836690a455eb7d55b64723d8ffc51435
parents 40f3b6cf 18b663da
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
};

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