From da6e9f10d0d828aa34dcf2b13a0c4333ac3be2c1 Mon Sep 17 00:00:00 2001 From: Yuncheol Heo Date: Wed, 17 Sep 2014 10:15:40 +0900 Subject: [PATCH] Remove MHL related code. Bug: 17479050 Change-Id: Id4a76ccf7325c78817d1b3c3460e5dc40e23831b --- .../com/android/server/hdmi/MhlConstants.java | 40 ------------------- 1 file changed, 40 deletions(-) delete mode 100644 services/core/java/com/android/server/hdmi/MhlConstants.java diff --git a/services/core/java/com/android/server/hdmi/MhlConstants.java b/services/core/java/com/android/server/hdmi/MhlConstants.java deleted file mode 100644 index fe479f3dfb379..0000000000000 --- a/services/core/java/com/android/server/hdmi/MhlConstants.java +++ /dev/null @@ -1,40 +0,0 @@ -package com.android.server.hdmi; - -/** - * Defines constants related to MHL protocol internal implementation. - */ -final class MhlConstants { - // -------------------------------------------------- - // MHL sub command message types. - static final int MSG_MSGE = 0x02; - static final int MSG_RCP = 0x10; - static final int MSG_RCPK = 0x11; - static final int MSG_RCPE = 0x12; - static final int MSG_RAP = 0x20; - static final int MSG_RAPK = 0x21; - - // MHL RAP messages. - static final int RAP_ACTION_POLL = 0x00; - static final int RAP_ACTION_CONTENT_ON = 0x10; - static final int RAP_ACTION_CONTENT_OFF = 0x11; - - // MHL RAPK messages. - static final int RAPK_NO_ERROR = 0x00; - static final int RAPK_UNRECOGNIZED_ACTION = 0x01; - static final int RAPK_UNSUPPORTED_ACTION = 0x02; - static final int RAPK_RESPONDER_BUSY = 0x03; - - static final int INVALID_ADOPTER_ID = -1; - static final int INVALID_DEVICE_ID = -1; - - static final int CBUS_MODE_OCBUS = 1; - static final int CBUS_MODE_ECBUS_S = 2; - static final int CBUS_MODE_ECBUS_D = 3; - - // MHL RCPE messages - static final int RCPE_NO_ERROR = 0x00; - static final int RCPE_INEFFECTIVE_KEYCODE = 0x01; - static final int RCPE_RESPONDER_BUSY = 0x02; - - private MhlConstants() { /* cannot be instantiated */ } -}