diff --git a/profiles/audio/bap.c b/profiles/audio/bap.c
index a1cb3ae..c1111b6 100644
--- a/profiles/audio/bap.c
+++ b/profiles/audio/bap.c
return adapter->adapter == match_data;
}
-void bap_scan_delegator_probe(struct btd_device *device)
-{
- struct bap_data *data;
-
- /* Create BAP session for the Broadcaster device */
- data = bap_data_new(device);
- data->device = device;
-
- bap_data_add(data);
-
- /* Add Broadcast Audio Announcement Service UUID
- * to device and probe service.
- */
- btd_device_add_uuid(device, BCAAS_UUID_STR);
-}
-
static int bap_bcast_probe(struct btd_service *service)
{
struct btd_device *device = btd_service_get_device(service);
diff --git a/profiles/audio/bap.h b/profiles/audio/bap.h
index fcc443d..5220723 100644
--- a/profiles/audio/bap.h
+++ b/profiles/audio/bap.h
extern struct bt_iso_qos bap_sink_pa_qos;
struct bt_bap *bap_get_session(struct btd_device *device);
-void bap_scan_delegator_probe(struct btd_device *device);
void bap_iso_qos_to_bap_qos(struct bt_iso_qos *iso_qos,
struct bt_bap_qos *bap_qos);