diff options
author | Naveen Kalla <nkalla@quicinc.com> | 2011-12-29 15:07:41 -0800 |
---|---|---|
committer | Wink Saville <wink@google.com> | 2011-12-29 15:08:20 -0800 |
commit | fc2cbe9b46ab17a401dc50f8e0dbb677ed012299 (patch) | |
tree | 345261a8e3de3aab3c98b054227c3d08d7946f5a /packages/SettingsProvider | |
parent | cbc46d145a799121424f677b62a0d438feb4f911 (diff) | |
download | frameworks_base-fc2cbe9b46ab17a401dc50f8e0dbb677ed012299.zip frameworks_base-fc2cbe9b46ab17a401dc50f8e0dbb677ed012299.tar.gz frameworks_base-fc2cbe9b46ab17a401dc50f8e0dbb677ed012299.tar.bz2 |
Separate SIM states from Radio states
Radio state reflects the state of the modem. SIM_READY, RUIM_READY,
NV_READY are subscription states and it is possible that the new cards
have multiple subscriptions. Remove the SIM states from Radio State and
introduce a new VOICE_RADIO_TECH message to identify the exact voice
technology. SIM states will continue to be identified from the
SIM_STATUS messages.
Change-Id: Ia67d54f43b6c3340d9cf5c27fcb6f7ef49ef4d40
Diffstat (limited to 'packages/SettingsProvider')
-rw-r--r-- | packages/SettingsProvider/src/com/android/providers/settings/DatabaseHelper.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/packages/SettingsProvider/src/com/android/providers/settings/DatabaseHelper.java b/packages/SettingsProvider/src/com/android/providers/settings/DatabaseHelper.java index 5a927c6..6e9ea52 100644 --- a/packages/SettingsProvider/src/com/android/providers/settings/DatabaseHelper.java +++ b/packages/SettingsProvider/src/com/android/providers/settings/DatabaseHelper.java @@ -1515,10 +1515,6 @@ public class DatabaseHelper extends SQLiteOpenHelper { loadSetting(stmt, Settings.Secure.CDMA_CELL_BROADCAST_SMS, RILConstants.CDMA_CELL_BROADCAST_SMS_DISABLED); - // Set the preferred cdma subscription to 0 = Subscription from RUIM, when available - loadSetting(stmt, Settings.Secure.PREFERRED_CDMA_SUBSCRIPTION, - RILConstants.PREFERRED_CDMA_SUBSCRIPTION); - // Don't do this. The SystemServer will initialize ADB_ENABLED from a // persistent system property instead. //loadSetting(stmt, Settings.Secure.ADB_ENABLED, 0); |