diff options
author | Luiz Augusto von Dentz <luiz.dentz-von@nokia.com> | 2010-06-09 12:29:23 +0300 |
---|---|---|
committer | Luiz Augusto von Dentz <luiz.dentz-von@nokia.com> | 2010-06-29 10:29:10 +0300 |
commit | 0f775bfff64dc5e073b3bd098c296da4660aa072 (patch) | |
tree | 349dece0d95d616a792fe5385ff5d020d361ffae /audio/manager.c | |
parent | 5e9d2a595902ac3fad577923c50e1ec92bfba179 (diff) |
Remove redundant information that is already present in DBG
Diffstat (limited to 'audio/manager.c')
-rw-r--r-- | audio/manager.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/audio/manager.c b/audio/manager.c index 5edfb1807..6dd0f8731 100644 --- a/audio/manager.c +++ b/audio/manager.c @@ -171,8 +171,7 @@ static void handle_uuid(const char *uuidstr, struct audio_device *device) uuid16 = uuid.value.uuid16; if (!server_is_enabled(&device->src, uuid16)) { - DBG("audio handle_uuid: server not enabled for %s (0x%04x)", - uuidstr, uuid16); + DBG("server not enabled for %s (0x%04x)", uuidstr, uuid16); return; } @@ -776,7 +775,7 @@ static int audio_probe(struct btd_device *device, GSList *uuids) audio_dev = manager_get_device(&src, &dst, TRUE); if (!audio_dev) { - DBG("audio_probe: unable to get a device object"); + DBG("unable to get a device object"); return -1; } @@ -806,7 +805,7 @@ static struct audio_adapter *audio_adapter_ref(struct audio_adapter *adp) { adp->ref++; - DBG("audio_adapter_ref(%p): ref=%d", adp, adp->ref); + DBG("%p: ref=%d", adp, adp->ref); return adp; } @@ -815,7 +814,7 @@ static void audio_adapter_unref(struct audio_adapter *adp) { adp->ref--; - DBG("audio_adapter_unref(%p): ref=%d", adp, adp->ref); + DBG("%p: ref=%d", adp, adp->ref); if (adp->ref > 0) return; |