Skip to content

Commit d5c70f7

Browse files
sean-madigannordicjm
authored andcommitted
[nrf fromlist] 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]> (cherry picked from commit 2e7c488) Upstream PR: zephyrproject-rtos/zephyr#76175 Signed-off-by: Sean Madigan <[email protected]>
1 parent 8bd088c commit d5c70f7

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
@@ -2974,7 +2974,7 @@ void notify_path_loss_threshold_report(struct bt_conn *conn,
29742974
{
29752975
struct bt_conn_cb *callback;
29762976

2977-
SYS_SLIST_FOR_EACH_CONTAINER(&callback_list, callback, _node) {
2977+
SYS_SLIST_FOR_EACH_CONTAINER(&conn_cbs, callback, _node) {
29782978
if (callback->path_loss_threshold_report) {
29792979
callback->path_loss_threshold_report(conn, &report);
29802980
}

0 commit comments

Comments
 (0)