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

Commit 66a17145 authored by Jean-Baptiste Queru's avatar Jean-Baptiste Queru Committed by Android Git Automerger
Browse files

am 1cb7b2e9: am e7486695: Merge "Add missing logging for SET_TTY_MODE and QUERY_TTY_MODE"

Merge commit '1cb7b2e9'

* commit '1cb7b2e9':
  Add missing logging for SET_TTY_MODE and QUERY_TTY_MODE
parents 9869fecb 1cb7b2e9
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -3405,6 +3405,8 @@ public final class RIL extends BaseCommands implements CommandsInterface {
        RILRequest rr = RILRequest.obtain(
                RILConstants.RIL_REQUEST_QUERY_TTY_MODE, response);

        if (RILJ_LOGD) riljLog(rr.serialString() + "> " + requestToString(rr.mRequest));

        send(rr);
    }

@@ -3418,6 +3420,9 @@ public final class RIL extends BaseCommands implements CommandsInterface {
        rr.mp.writeInt(1);
        rr.mp.writeInt(ttyMode);

        if (RILJ_LOGD) riljLog(rr.serialString() + "> " + requestToString(rr.mRequest)
                + " : " + ttyMode);

        send(rr);
    }