Merge "Update HAL API names"

This commit is contained in:
Nathalie Le Clair
2023-02-15 09:53:27 +00:00
committed by Android (Google) Code Review
2 changed files with 5 additions and 5 deletions

View File

@@ -601,12 +601,12 @@ final class Constants {
})
@interface RcProfileSource {}
static final int HDMI_EARC_STATUS_IDLE = IEArcStatus.STATUS_IDLE; // IDLE1
static final int HDMI_EARC_STATUS_IDLE = IEArcStatus.IDLE; // IDLE1
static final int HDMI_EARC_STATUS_EARC_PENDING =
IEArcStatus.STATUS_EARC_PENDING; // DISC1 and DISC2
static final int HDMI_EARC_STATUS_ARC_PENDING = IEArcStatus.STATUS_ARC_PENDING; // IDLE2 for ARC
IEArcStatus.EARC_PENDING; // DISC1 and DISC2
static final int HDMI_EARC_STATUS_ARC_PENDING = IEArcStatus.ARC_PENDING; // IDLE2 for ARC
static final int HDMI_EARC_STATUS_EARC_CONNECTED =
IEArcStatus.STATUS_EARC_CONNECTED; // eARC connected
IEArcStatus.EARC_CONNECTED; // eARC connected
@IntDef({
HDMI_EARC_STATUS_IDLE,

View File

@@ -44,7 +44,7 @@ final class FakeEArcNativeWrapper implements HdmiEarcController.EArcNativeWrappe
@Override
public byte nativeGetState(int portId) {
return IEArcStatus.STATUS_IDLE;
return IEArcStatus.IDLE;
}
@Override