summaryrefslogtreecommitdiff
path: root/profiles/audio/source.c
diff options
context:
space:
mode:
Diffstat (limited to 'profiles/audio/source.c')
-rw-r--r--profiles/audio/source.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/profiles/audio/source.c b/profiles/audio/source.c
index 372b13202..912927d39 100644
--- a/profiles/audio/source.c
+++ b/profiles/audio/source.c
@@ -89,7 +89,7 @@ static void source_set_state(struct source *source, source_state_t new_state)
source->state = new_state;
- DBG("State changed %s: %s -> %s", device_get_path(dev),
+ DBG("State changed %s: %s -> %s", btd_device_get_path(dev),
str_state[old_state], str_state[new_state]);
for (l = source_callbacks; l != NULL; l = l->next) {
@@ -347,7 +347,7 @@ void source_unregister(struct btd_service *service)
{
struct btd_device *dev = btd_service_get_device(service);
- DBG("%s", device_get_path(dev));
+ DBG("%s", btd_device_get_path(dev));
source_free(service);
}
@@ -357,7 +357,7 @@ int source_init(struct btd_service *service)
struct btd_device *dev = btd_service_get_device(service);
struct source *source;
- DBG("%s", device_get_path(dev));
+ DBG("%s", btd_device_get_path(dev));
source = g_new0(struct source, 1);