From c11396ecc6738126e84f6262fecbd6021ca20abd Mon Sep 17 00:00:00 2001 From: sbrissen Date: Mon, 28 Oct 2013 15:37:34 -0400 Subject: allow override of cabc file via property Note 8's cabc is implemented in mdnie instead of the panel file like other smdk4x12 devices. Change-Id: I9bd7c4bb5899cd323e4f6861bf7ceb61f459da05 --- cmhw/org/cyanogenmod/hardware/AdaptiveBacklight.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cmhw/org/cyanogenmod/hardware/AdaptiveBacklight.java b/cmhw/org/cyanogenmod/hardware/AdaptiveBacklight.java index 9eeddf2..d96dad9 100644 --- a/cmhw/org/cyanogenmod/hardware/AdaptiveBacklight.java +++ b/cmhw/org/cyanogenmod/hardware/AdaptiveBacklight.java @@ -18,6 +18,8 @@ package org.cyanogenmod.hardware; import org.cyanogenmod.hardware.util.FileUtils; +import android.os.SystemProperties; + import java.io.File; /** @@ -26,7 +28,7 @@ import java.io.File; */ public class AdaptiveBacklight { - private static String FILE_CABC = "/sys/class/lcd/panel/power_reduce"; + private static String FILE_CABC = SystemProperties.get("ro.cm.hardware.cabc", "/sys/class/lcd/panel/power_reduce"); /** * Whether device supports an adaptive backlight technology. -- cgit v1.2.3