summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--audio/telephony-maemo.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/audio/telephony-maemo.c b/audio/telephony-maemo.c
index 760caed3..c91bb969 100644
--- a/audio/telephony-maemo.c
+++ b/audio/telephony-maemo.c
@@ -762,9 +762,10 @@ void telephony_call_hold_req(void *telephony_device, const char *cmd)
telephony_call_hold_rsp(telephony_device, CME_ERROR_NONE);
}
-void telephony_disable_nr_and_ec_req(void *telephony_device)
+void telephony_disable_nr_and_ec_req(void *telephony_device, gboolean enable)
{
- debug("telephony-maemo: got disable NR and EC request");
+ debug("telephony-maemo: got %s NR and EC request",
+ enable ? "enable" : "disable");
telephony_disable_nr_and_ec_rsp(telephony_device, CME_ERROR_NONE);
}