summaryrefslogtreecommitdiffstats
path: root/Power.cpp
diff options
context:
space:
mode:
authorKeith Mok <kmok@cyngn.com>2015-11-13 09:46:14 -0800
committerMichael Bestas <mkbestas@lineageos.org>2019-10-23 01:12:56 +0300
commite9c7fcc763ff005ed91de23a05db7c87cc836b58 (patch)
treec1beeaf5eba1b1515fd3800ba2a3ed0091c68a59 /Power.cpp
parente0a09037f41da6fa2da8dbbbf03117765b4ae714 (diff)
downloadvendor_qcom_opensource_power-e9c7fcc763ff005ed91de23a05db7c87cc836b58.tar.gz
vendor_qcom_opensource_power-e9c7fcc763ff005ed91de23a05db7c87cc836b58.tar.bz2
vendor_qcom_opensource_power-e9c7fcc763ff005ed91de23a05db7c87cc836b58.zip
power: Refactor TARGET_TAP_TO_WAKE_NODE
Add TARGET_POWER_SET_FEATURE_LIB, since other devices are not simply writing a 0/1 to a device node. TARGET_TAP_TO_WAKE_NODE is still valid and both TARGET_TAP_TO_WAKE_NODE and TARGET_POWER_SET_FEATURE_LIB are allowed to coexist. (Currently set_feature only has double tap to wake, but it may be extended in future) Change-Id: I5c6204fd38a6fbe48e8aac49843bfa047c4b6436
Diffstat (limited to 'Power.cpp')
-rw-r--r--Power.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Power.cpp b/Power.cpp
index ebdc60a..2caeaca 100644
--- a/Power.cpp
+++ b/Power.cpp
@@ -33,6 +33,7 @@
#include <log/log.h>
#include "Power.h"
#include "power-common.h"
+#include "power-feature.h"
namespace android {
namespace hardware {
@@ -74,6 +75,7 @@ Return<void> Power::setFeature(Feature feature, bool activate) {
default:
break;
}
+ set_device_specific_feature(static_cast<feature_t>(feature), activate ? 1 : 0);
return Void();
}