diff --git a/include/radio/Radio.h b/include/radio/Radio.h index 302bf163303..a4dfdd1813d 100644 --- a/include/radio/Radio.h +++ b/include/radio/Radio.h @@ -75,7 +75,7 @@ class Radio : public BnRadioClient, private: Radio(radio_handle_t handle, const sp&); - static const sp& getRadioService(); + static const sp getRadioService(); Mutex mLock; sp mIRadio; diff --git a/radio/Radio.cpp b/radio/Radio.cpp index e3554c2400b..3c04fb0ab2e 100644 --- a/radio/Radio.cpp +++ b/radio/Radio.cpp @@ -55,7 +55,7 @@ namespace { sp gDeathNotifier; }; // namespace anonymous -const sp& Radio::getRadioService() +const sp Radio::getRadioService() { Mutex::Autolock _l(gLock); if (gRadioService.get() == 0) { @@ -84,7 +84,7 @@ status_t Radio::listModules(struct radio_properties *properties, uint32_t *numModules) { ALOGV("listModules()"); - const sp& service = getRadioService(); + const sp service = getRadioService(); if (service == 0) { return NO_INIT; } @@ -98,7 +98,7 @@ sp Radio::attach(radio_handle_t handle, { ALOGV("attach()"); sp radio; - const sp& service = getRadioService(); + const sp service = getRadioService(); if (service == 0) { return radio; }