cmsdk: Fix hardware service interfaces.

Always add new interfaces to the bottom of the aidl
  or you break backwards compatability.

Change-Id: I376fbe6869d3fb0002822112eb05d9acddd51572
TICKET: CYNGNOS-1699
This commit is contained in:
Adnan Begovic 2016-01-22 17:09:44 -08:00
parent 62579b157a
commit 7ee149d529
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,6 @@ interface ICMHardwareService {
String getSerialNumber();
boolean requireAdaptiveBacklightForSunlightEnhancement();
boolean isSunlightEnhancementSelfManaged();
DisplayMode[] getDisplayModes();
DisplayMode getCurrentDisplayMode();
@ -56,4 +55,5 @@ interface ICMHardwareService {
int getThermalState();
boolean registerThermalListener(IThermalListenerCallback callback);
boolean unRegisterThermalListener(IThermalListenerCallback callback);
boolean isSunlightEnhancementSelfManaged();
}