summaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@nokia.com>2008-12-05 15:38:52 +0200
committerJohan Hedberg <johan.hedberg@nokia.com>2008-12-08 16:10:59 +0200
commit3bb39cb82ce754199bffdee1fbea66cd006b8577 (patch)
tree083d49d7846e5b864b149a16475e189012b827df /audio
parentfa9265d12f920a8215b30f5b544b20ebbd166cf9 (diff)
Update to match new telephony_disable_nr_and_ec_req API
Diffstat (limited to 'audio')
-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);
}