summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2015-04-07 19:13:42 +0200
committerAndreas Schneider <asn@cryptomilk.org>2015-04-08 14:00:31 +0200
commit68f80d8f04de1cac9ed34f9a29e69e1ad91615c4 (patch)
tree834af71aa6f5d92eb75d8df16f99aa244413126d
parenteeb7df7cf49f6abc3c185818da43f3054dc2e29b (diff)
downloadandroid_hardware_samsung-68f80d8f04de1cac9ed34f9a29e69e1ad91615c4.tar.gz
android_hardware_samsung-68f80d8f04de1cac9ed34f9a29e69e1ad91615c4.tar.bz2
android_hardware_samsung-68f80d8f04de1cac9ed34f9a29e69e1ad91615c4.zip
libril: Fix processRadioState prototype
Change-Id: I19c5c2319fe4110c3859012a27a08d5c7f942177 Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
-rw-r--r--ril/libril/ril.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ril/libril/ril.cpp b/ril/libril/ril.cpp
index ad4a606..c1b25e0 100644
--- a/ril/libril/ril.cpp
+++ b/ril/libril/ril.cpp
@@ -310,7 +310,7 @@ static int responseDcRtInfo(Parcel &p, void *response, size_t responselen);
static int decodeVoiceRadioTechnology (RIL_RadioState radioState);
static int decodeCdmaSubscriptionSource (RIL_RadioState radioState);
-static RIL_RadioState processRadioState(RIL_RadioState newRadioState);
+static RIL_RadioState processRadioState(RIL_RadioState newRadioState, RIL_SOCKET_ID socket_id);
#ifdef RIL_SHLIB
#if defined(ANDROID_MULTI_SIM)
@@ -4336,7 +4336,7 @@ static bool is3gpp2(int radioTech) {
* returned when telephony framework requests them
*/
static RIL_RadioState
-processRadioState(RIL_RadioState newRadioState, RIL_SOCKET_ID socket_id) {
+processRadioState(RIL_RadioState newRadioState, RIL_SOCKET_ID socket_id __unused) {
if((newRadioState > RADIO_STATE_UNAVAILABLE) && (newRadioState < RADIO_STATE_ON)) {
int newVoiceRadioTech;