DO NOT MERGE Set Settings.Global.CELL_ON default to CELL_ON_FLAG if not defined.
am: 89dd33541f

Change-Id: Ief123beee9e3697707f9be2a41b2ea1bab742d1d
diff --git a/src/com/android/services/telephony/TelephonyConnectionService.java b/src/com/android/services/telephony/TelephonyConnectionService.java
index ff38c85..b33769a 100644
--- a/src/com/android/services/telephony/TelephonyConnectionService.java
+++ b/src/com/android/services/telephony/TelephonyConnectionService.java
@@ -284,7 +284,7 @@
                 R.bool.config_allowRadioPowerDownOnBluetooth);
         final int cellOn = Settings.Global.getInt(context.getContentResolver(),
                 Settings.Global.CELL_ON,
-                PhoneConstants.CELL_OFF_FLAG);
+                PhoneConstants.CELL_ON_FLAG);
         return (allowed && cellOn == PhoneConstants.CELL_ON_FLAG && !isRadioOn());
     }