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

Commit 6dec659e authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "l2cap: Notify upper layer about credit based conn request collision"...

Merge "l2cap: Notify upper layer about credit based conn request collision" am: cb9432dd am: 8ef7dee7 am: 39eaf7e3

Original change: https://android-review.googlesource.com/c/platform/packages/modules/Bluetooth/+/2143913



Change-Id: Id0c229be2cf13379e8081b16f66506581920a246
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents d91b008f 39eaf7e3
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -61,6 +61,7 @@ const tL2CAP_APPL_INFO avct_l2c_appl = {
    NULL,
    NULL,
    NULL,
    NULL,
};

/*******************************************************************************
+1 −0
Original line number Diff line number Diff line
@@ -61,6 +61,7 @@ const tL2CAP_APPL_INFO avct_l2c_br_appl = {avct_l2c_br_connect_ind_cback,
                                           avct_br_on_l2cap_error,
                                           NULL,
                                           NULL,
                                           NULL,
                                           NULL};

/*******************************************************************************
+1 −0
Original line number Diff line number Diff line
@@ -62,6 +62,7 @@ const tL2CAP_APPL_INFO avdt_l2c_appl = {avdt_l2c_connect_ind_cback,
                                        avdt_on_l2cap_error,
                                        NULL,
                                        NULL,
                                        NULL,
                                        NULL};

/*******************************************************************************
+1 −0
Original line number Diff line number Diff line
@@ -83,6 +83,7 @@ static const tL2CAP_APPL_INFO dyn_info = {gatt_l2cif_connect_ind_cback,
                                          gatt_on_l2cap_error,
                                          NULL,
                                          NULL,
                                          NULL,
                                          NULL};

tGATT_CB gatt_cb;
+1 −0
Original line number Diff line number Diff line
@@ -60,6 +60,7 @@ static const tL2CAP_APPL_INFO dev_reg_info = {hidd_l2cif_connect_ind,
                                              hidd_on_l2cap_error,
                                              NULL,
                                              NULL,
                                              NULL,
                                              NULL};

/*******************************************************************************
Loading