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.h | |
| 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.h')
| -rw-r--r-- | audio/telephony.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/audio/telephony.h b/audio/telephony.h index 084b1571..1c93b46f 100644 --- a/audio/telephony.h +++ b/audio/telephony.h @@ -153,7 +153,7 @@ void telephony_subscriber_number_req(void *telephony_device);  void telephony_list_current_calls_req(void *telephony_device);  void telephony_operator_selection_req(void *telephony_device);  void telephony_call_hold_req(void *telephony_device, const char *cmd); -void telephony_disable_nr_and_ec_req(void *telephony_device, gboolean enable); +void telephony_nr_and_ec_req(void *telephony_device, gboolean enable);  /* AG responses to HF requests. These are implemented by headset.c */  int telephony_event_reporting_rsp(void *telephony_device, cme_error_t err); @@ -167,7 +167,7 @@ int telephony_subscriber_number_rsp(void *telephony_device, cme_error_t err);  int telephony_list_current_calls_rsp(void *telephony_device, cme_error_t err);  int telephony_operator_selection_rsp(void *telephony_device, cme_error_t err);  int telephony_call_hold_rsp(void *telephony_device, cme_error_t err); -int telephony_disable_nr_and_ec_rsp(void *telephony_device, cme_error_t err); +int telephony_nr_and_ec_rsp(void *telephony_device, cme_error_t err);  /* Event indications by AG. These are implemented by headset.c */  int telephony_event_ind(int index); | 
