Skip to content

Commit 2e7c488

Browse files
sean-madigannashif
authored andcommitted
bluetooth: host: conn: Fix renamed callback_list
callback_list was renamed to conn_cbs in commit 3eb975d. However plm callback was missed due to it not being built anywhere. Signed-off-by: Sean Madigan <[email protected]>
1 parent caa0c0a commit 2e7c488

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

subsys/bluetooth/host/conn.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3003,7 +3003,7 @@ void notify_path_loss_threshold_report(struct bt_conn *conn,
30033003
{
30043004
struct bt_conn_cb *callback;
30053005

3006-
SYS_SLIST_FOR_EACH_CONTAINER(&callback_list, callback, _node) {
3006+
SYS_SLIST_FOR_EACH_CONTAINER(&conn_cbs, callback, _node) {
30073007
if (callback->path_loss_threshold_report) {
30083008
callback->path_loss_threshold_report(conn, &report);
30093009
}

0 commit comments

Comments
 (0)