summaryrefslogtreecommitdiffstats
path: root/power-common.c
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-common.c
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-common.c')
-rw-r--r--power-common.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/power-common.c b/power-common.c
index 1a03c77..e52881f 100644
--- a/power-common.c
+++ b/power-common.c
@@ -47,6 +47,7 @@
#include "hint-data.h"
#include "performance.h"
#include "power-common.h"
+#include "power-feature.h"
static struct hint_handles handles[NUM_HINTS];
@@ -134,3 +135,7 @@ void set_interactive(int on)
ALOGI("Got set_interactive hint");
}
+
+void __attribute__((weak)) set_device_specific_feature(feature_t UNUSED(feature), int UNUSED(state))
+{
+}