Bluetooth: audio: csis: Fix bt_conn_foreach function parameter
Exclude non-LE connections when sending notifications. Signed-off-by: Mariusz Skamra <mariusz.skamra@codecoup.pl>
This commit is contained in:
parent
c73b0e28a3
commit
0b825d0ee4
|
@ -115,7 +115,7 @@ static void notify_clients(struct bt_csis *csis,
|
|||
}
|
||||
}
|
||||
|
||||
bt_conn_foreach(BT_CONN_TYPE_ALL, notify_client, &data);
|
||||
bt_conn_foreach(BT_CONN_TYPE_LE, notify_client, &data);
|
||||
}
|
||||
|
||||
static int sirk_encrypt(struct bt_conn *conn,
|
||||
|
|
Loading…
Reference in New Issue