diff options
| author | Johan Hedberg <johan.hedberg@nokia.com> | 2008-09-05 16:10:53 +0300 | 
|---|---|---|
| committer | Johan Hedberg <johan.hedberg@nokia.com> | 2008-09-05 16:10:53 +0300 | 
| commit | 7e549a90251c90ae0ff659ae5bef3aa58f843702 (patch) | |
| tree | 1cc304c0806354079df6bb748e51c81199454e80 | |
| parent | 7efc4a093324169cbcaef10e584f0d0dc40ed5ef (diff) | |
Make telephony_ready name consistent with the other functions
| -rw-r--r-- | audio/headset.c | 4 | ||||
| -rw-r--r-- | audio/telephony-dummy.c | 2 | ||||
| -rw-r--r-- | audio/telephony.h | 2 | 
3 files changed, 4 insertions, 4 deletions
| diff --git a/audio/headset.c b/audio/headset.c index bca3ede3..1903fbf2 100644 --- a/audio/headset.c +++ b/audio/headset.c @@ -2094,8 +2094,8 @@ int telephony_calling_stopped_ind(void)  	return 0;  } -int telephony_ready(uint32_t features, const struct indicator *indicators, -			int rh) +int telephony_ready_ind(uint32_t features, +			const struct indicator *indicators, int rh)  {  	ag.telephony_ready = TRUE;  	ag.features = features; diff --git a/audio/telephony-dummy.c b/audio/telephony-dummy.c index 9cc0f4db..a67d3a5f 100644 --- a/audio/telephony-dummy.c +++ b/audio/telephony-dummy.c @@ -271,7 +271,7 @@ int telephony_init(void)  					dummy_methods, NULL,  					NULL, NULL, NULL); -	telephony_ready(features, dummy_indicators, response_and_hold); +	telephony_ready_ind(features, dummy_indicators, response_and_hold);  	return 0;  } diff --git a/audio/telephony.h b/audio/telephony.h index f71d52bd..1b622933 100644 --- a/audio/telephony.h +++ b/audio/telephony.h @@ -82,7 +82,7 @@ int telephony_calling_started_ind(const char *number);  int telephony_calling_stopped_ind(void); -int telephony_ready(uint32_t features, const struct indicator *indicators, +int telephony_ready_ind(uint32_t features, const struct indicator *indicators,  			int rh);  /* Helper function for quick indicator updates */ | 
