Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 584a9169 authored by Yifan Hong's avatar Yifan Hong
Browse files

IRadioConfig HAL: use default instance name.

... to be consistent with other HALs.
Fixes: 77292499
Test: device has signal

Change-Id: I81ce2c95a1ee517bc509d3b8abf5d598c07f2d69
parent 7b9fe52f
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -49,7 +49,6 @@ public class RadioConfig extends Handler {
    private static final boolean DBG = true;
    private static final boolean VDBG = false;   //STOPSHIP if true

    private static final String RADIO_CONFIG_SERVICE_NAME = "radioconfig";
    private static final int EVENT_SERVICE_DEAD = 1;

    private final boolean mIsMobileNetworkSupported;
@@ -166,7 +165,7 @@ public class RadioConfig extends Handler {
        }

        try {
            mRadioConfigProxy = IRadioConfig.getService(RADIO_CONFIG_SERVICE_NAME, true);
            mRadioConfigProxy = IRadioConfig.getService(true);
            if (mRadioConfigProxy != null) {
                mRadioConfigProxy.linkToDeath(mServiceDeathRecipient,
                        mRadioConfigProxyCookie.incrementAndGet());