summaryrefslogtreecommitdiffstats
path: root/drivers/hfpmodem/voicecall.c
diff options
context:
space:
mode:
authorDenis Kenzior <denkenz@gmail.com>2010-02-08 12:28:23 -0600
committerDenis Kenzior <denkenz@gmail.com>2010-02-08 12:28:23 -0600
commitc98b951fe627e39c4c3ec699e4453d7803e51e11 (patch)
tree376b278cb3b4b5e405570586c8ad08a825b2ef7f /drivers/hfpmodem/voicecall.c
parent7f9a9b0cdc82d5bb03230a343d5b1504f210c447 (diff)
downloadofono-c98b951fe627e39c4c3ec699e4453d7803e51e11.tar.bz2
Refactor: Remove atutil dump_response
No longer needed now that we have nice AT command tracing using OFONO_AT_DEBUG=1
Diffstat (limited to 'drivers/hfpmodem/voicecall.c')
-rw-r--r--drivers/hfpmodem/voicecall.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/drivers/hfpmodem/voicecall.c b/drivers/hfpmodem/voicecall.c
index 28a851c3..1fa0eec0 100644
--- a/drivers/hfpmodem/voicecall.c
+++ b/drivers/hfpmodem/voicecall.c
@@ -207,8 +207,6 @@ static void clcc_poll_cb(gboolean ok, GAtResult *result, gpointer user_data)
unsigned int num_active = 0;
unsigned int num_held = 0;
- dump_response("clcc_poll_cb", ok, result);
-
if (!ok)
return;
@@ -300,7 +298,6 @@ static void generic_cb(gboolean ok, GAtResult *result, gpointer user_data)
struct voicecall_data *vd = ofono_voicecall_get_data(req->vc);
struct ofono_error error;
- dump_response("generic_cb", ok, result);
decode_at_error(&error, g_at_result_final_response(result));
if (ok && req->affected_types) {
@@ -330,8 +327,6 @@ static void atd_cb(gboolean ok, GAtResult *result, gpointer user_data)
struct ofono_call *call;
GSList *l;
- dump_response("atd_cb", ok, result);
-
decode_at_error(&error, g_at_result_final_response(result));
if (!ok)
@@ -497,7 +492,6 @@ static void release_id_cb(gboolean ok, GAtResult *result,
struct voicecall_data *vd = ofono_voicecall_get_data(req->vc);
struct ofono_error error;
- dump_response("release_id_cb", ok, result);
decode_at_error(&error, g_at_result_final_response(result));
if (ok)
@@ -642,8 +636,6 @@ static void ccwa_notify(GAtResult *result, gpointer user_data)
int num_type, validity;
struct ofono_call *call;
- dump_response("ccwa_notify", TRUE, result);
-
/* CCWA can repeat, ignore if we already have an waiting call */
if (g_slist_find_custom(vd->calls,
GINT_TO_POINTER(CALL_STATUS_WAITING),
@@ -709,8 +701,6 @@ static void ring_notify(GAtResult *result, gpointer user_data)
struct ofono_call *call;
GSList *waiting;
- dump_response("ring_notify", TRUE, result);
-
/* RING can repeat, ignore if we already have an incoming call */
if (g_slist_find_custom(vd->calls,
GINT_TO_POINTER(CALL_STATUS_INCOMING),
@@ -762,8 +752,6 @@ static void clip_notify(GAtResult *result, gpointer user_data)
GSList *l;
struct ofono_call *call;
- dump_response("clip_notify", TRUE, result);
-
l = g_slist_find_custom(vd->calls,
GINT_TO_POINTER(CALL_STATUS_INCOMING),
at_util_call_compare_by_status);
@@ -880,7 +868,6 @@ static void sync_dialing_cb(gboolean ok, GAtResult *result, gpointer user_data)
struct ofono_call *oc;
struct ofono_call *nc;
- dump_response("sync_dialing_cb", ok, result);
decode_at_error(&error, g_at_result_final_response(result));
if (!ok)