am 1ea2aeda: am 589a4896: am c6c18618: Merge "Fix to show low LTE signal strength as -140 instead of 0." into lmp-dev

* commit '1ea2aeda29a247de56e7991d16a4ae12d9aff8f1':
  Fix to show low LTE signal strength as -140 instead of 0.
This commit is contained in:
Amit Mahajan
2014-10-11 03:18:04 +00:00
committed by Android Git Automerger

View File

@@ -533,10 +533,9 @@ public class SignalStrength implements Parcelable {
int dBm;
if(isGsm()) {
if (getLteLevel() == SIGNAL_STRENGTH_NONE_OR_UNKNOWN) {
dBm = getLteDbm();
if (dBm == INVALID) {
dBm = getGsmDbm();
} else {
dBm = getLteDbm();
}
} else {
int cdmaDbm = getCdmaDbm();