summaryrefslogtreecommitdiffstats
path: root/power-feature.h
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-feature.h
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-feature.h')
-rw-r--r--power-feature.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/power-feature.h b/power-feature.h
new file mode 100644
index 0000000..abf0d4e
--- /dev/null
+++ b/power-feature.h
@@ -0,0 +1,33 @@
+/*
+ * Copyright (C) 2015 The CyanogenMod Project
+ * Copyright (C) 2019 The LineageOS Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef _QCOM_POWER_FEATURE_H
+#define _QCOM_POWER_FEATURE_H
+
+#include <hardware/power.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+void set_device_specific_feature(feature_t feature, int state);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif