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

Commit 50213f18 authored by Jungshik Jang's avatar Jungshik Jang Committed by Android Git Automerger
Browse files

am 5ef743d9: Merge "Follow up send message errors of hdmi_cec.h in service side" into lmp-dev

* commit '5ef743d96907935603ef18e993b58ad14b32fd7d':
  Follow up send message errors of hdmi_cec.h in service side
parents fcb6ed8b b35fba02
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -179,10 +179,11 @@ final class Constants {
    static final int INVALID_PORT_ID = -1;
    static final int INVALID_PHYSICAL_ADDRESS = 0xFFFF;

    // Send result codes.
    // Send result codes. It should be consistent with hdmi_cec.h's send_message error code.
    static final int SEND_RESULT_SUCCESS = 0;
    static final int SEND_RESULT_NAK = -1;
    static final int SEND_RESULT_FAILURE = -2;
    static final int SEND_RESULT_NAK = 1;
    static final int SEND_RESULT_BUSY = 2;
    static final int SEND_RESULT_FAILURE = 3;

    // Strategy for device polling.
    // Should use "OR(|) operation of POLL_STRATEGY_XXX and POLL_ITERATION_XXX.