diff options
author | Simon Shields <keepcalm444@gmail.com> | 2015-12-12 18:12:16 +1100 |
---|---|---|
committer | Caio Schnepper <caioschnepper@gmail.com> | 2016-02-04 08:03:00 -0200 |
commit | 0645c2e2ac49389d0f283db55c9f0f49f20fc852 (patch) | |
tree | d58f2bdefe7f80b634badc5f773f453e6598db10 /ril-wrapper | |
parent | ebb9e69395cbe33cda2334ba46e1a40ad0d6c2ce (diff) | |
download | device_samsung_galaxys2-common-0645c2e2ac49389d0f283db55c9f0f49f20fc852.zip device_samsung_galaxys2-common-0645c2e2ac49389d0f283db55c9f0f49f20fc852.tar.gz device_samsung_galaxys2-common-0645c2e2ac49389d0f283db55c9f0f49f20fc852.tar.bz2 |
galaxys2-common: fake GET_RADIO_CAPABILITY response
Samsung's RIL doesn't support this, but doesn't error on it either.
Change-Id: I5a470c55fecf85183e9c7b4b37aef3b3cbffaf90
Diffstat (limited to 'ril-wrapper')
-rw-r--r-- | ril-wrapper/ril-wrapper.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ril-wrapper/ril-wrapper.c b/ril-wrapper/ril-wrapper.c index 8371870..886cb34 100644 --- a/ril-wrapper/ril-wrapper.c +++ b/ril-wrapper/ril-wrapper.c @@ -28,6 +28,18 @@ static RIL_RadioFunctions const *mRealRadioFuncs; static const struct RIL_Env *mEnv; +static void rilOnRequest(int request, void *data, size_t datalen, RIL_Token t) +{ + switch (request) { + case RIL_REQUEST_GET_RADIO_CAPABILITY: + RLOGW("Returning NOT_SUPPORTED on GET_RADIO_CAPABILITY"); + mEnv->OnRequestComplete(t, RIL_E_REQUEST_NOT_SUPPORTED, NULL, 0); + break; + default: + mRealRadioFuncs->onRequest(request, data, datalen, t); + } +} + const RIL_RadioFunctions* RIL_Init(const struct RIL_Env *env, int argc, char **argv) { RIL_RadioFunctions const* (*fRealRilInit)(const struct RIL_Env *env, int argc, char **argv); @@ -74,6 +86,7 @@ const RIL_RadioFunctions* RIL_Init(const struct RIL_Env *env, int argc, char **a //copy the real RIL's info struct, then replace the onRequest pointer with our own rilInfo = *mRealRadioFuncs; + rilInfo.onRequest = rilOnRequest; RLOGD("Wrapped RIL version is '%s'\n", mRealRadioFuncs->getVersion()); |