diff options
| author | Johan Hedberg <johan.hedberg@nokia.com> | 2008-12-10 17:14:46 +0200 | 
|---|---|---|
| committer | Johan Hedberg <johan.hedberg@nokia.com> | 2008-12-10 17:14:46 +0200 | 
| commit | 972fc8cc7181e503f90dcfae53d35602a562afa2 (patch) | |
| tree | 0f94e36bbdb75bfd0399725dedc2c1df936563eb /audio/telephony-dummy.c | |
| parent | 2d4fde8e79a6889200227ec12eeb10c69893c9d7 (diff) | |
Fix AT+NREC API
Remove disable from the function names since there now is the boolean
"enable" parameter.
Diffstat (limited to 'audio/telephony-dummy.c')
| -rw-r--r-- | audio/telephony-dummy.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/audio/telephony-dummy.c b/audio/telephony-dummy.c index 9c13e91d..c1eee1d3 100644 --- a/audio/telephony-dummy.c +++ b/audio/telephony-dummy.c @@ -197,12 +197,12 @@ 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, gboolean enable) +void telephony_nr_and_ec_req(void *telephony_device, gboolean enable)  {  	debug("telephony-dummy: got %s NR and EC request",  			enable ? "enable" : "disable"); -	telephony_disable_nr_and_ec_rsp(telephony_device, CME_ERROR_NONE); +	telephony_nr_and_ec_rsp(telephony_device, CME_ERROR_NONE);  }  /* D-Bus method handlers */ | 
