From 5c1ebdc9db8d7e5ff51704f80c55f460638eb095 Mon Sep 17 00:00:00 2001 From: Glenn Kasten Date: Mon, 9 Jan 2012 10:41:59 -0800 Subject: Use audio_mode_t consistently Change-Id: I62e23b81e3a411a0d9f012b363373d938827a2e4 --- audio/audio_policy_hal.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'audio/audio_policy_hal.cpp') diff --git a/audio/audio_policy_hal.cpp b/audio/audio_policy_hal.cpp index aa70037..f68ea1b 100644 --- a/audio/audio_policy_hal.cpp +++ b/audio/audio_policy_hal.cpp @@ -84,10 +84,11 @@ static audio_policy_dev_state_t ap_get_device_connection_state( device_address); } -static void ap_set_phone_state(struct audio_policy *pol, int state) +static void ap_set_phone_state(struct audio_policy *pol, audio_mode_t state) { struct legacy_audio_policy *lap = to_lap(pol); - lap->apm->setPhoneState(state); + // as this is the legacy API, don't change it to use audio_mode_t instead of int + lap->apm->setPhoneState((int) state); } /* indicate a change in ringer mode */ -- cgit v1.1