diff --git a/profiles/health/hdp.c b/profiles/health/hdp.c
index 4f90380..65800fa 100644
--- a/profiles/health/hdp.c
+++ b/profiles/health/hdp.c
chan->ref++;
- DBG("health_channel_ref(%p): ref=%d", chan, chan->ref);
+ DBG("(%p): ref=%d", chan, chan->ref);
return chan;
}
return;
chan->ref --;
- DBG("health_channel_unref(%p): ref=%d", chan, chan->ref);
+ DBG("(%p): ref=%d", chan, chan->ref);
if (chan->ref > 0)
return;
{
dc_data->ref++;
- DBG("hdp_create_data_ref(%p): ref=%d", dc_data, dc_data->ref);
+ DBG("(%p): ref=%d", dc_data, dc_data->ref);
return dc_data;
}
{
dc_data->ref--;
- DBG("hdp_create_data_unref(%p): ref=%d", dc_data, dc_data->ref);
+ DBG("(%p): ref=%d", dc_data, dc_data->ref);
if (dc_data->ref > 0)
return;
{
/* struct hdp_device *dev = data; */
- DBG("hdp_mcap_mdl_closed_cb");
+ DBG("");
/* Nothing to do */
}
char *path;
GSList *l;
- DBG("hdp_mcap_mdl_deleted_cb");
+ DBG("");
+
l = g_slist_find_custom(dev->channels, mdl, cmp_chan_mdl);
if (l == NULL)
return;
{
struct hdp_device *dev = data;
- DBG("hdp_mcap_mdl_aborted_cb");
+ DBG("");
+
if (dev->ndc == NULL)
return;
{
hdp_dev->ref++;
- DBG("health_device_ref(%p): ref=%d", hdp_dev, hdp_dev->ref);
+ DBG("(%p): ref=%d", hdp_dev, hdp_dev->ref);
return hdp_dev;
}
{
hdp_dev->ref--;
- DBG("health_device_unref(%p): ref=%d", hdp_dev, hdp_dev->ref);
+ DBG("(%p): ref=%d", hdp_dev, hdp_dev->ref);
if (hdp_dev->ref > 0)
return;