From c5eab5a806bf11ae8f76b845e9031a74877a4673 Mon Sep 17 00:00:00 2001 From: Matt Filetto Date: Sat, 7 Jun 2014 00:26:10 -0700 Subject: [PATCH] power: use default qcom powerhal (elelinux) --- BoardConfig.mk | 1 - power/power_ext.c | 57 ----------------------------------------------- 2 files changed, 58 deletions(-) delete mode 100644 power/power_ext.c diff --git a/BoardConfig.mk b/BoardConfig.mk index a9d13ef..b613bca 100644 --- a/BoardConfig.mk +++ b/BoardConfig.mk @@ -123,7 +123,6 @@ TARGET_OTA_ASSERT_DEVICE := kltexx,kltespr,kltetmo,kltecan,klteatt,kltevzw,klte # PowerHAL TARGET_POWERHAL_VARIANT := qcom -TARGET_POWERHAL_SET_INTERACTIVE_EXT := device/samsung/klte/power/power_ext.c # The "new" GPS is really the old GPS, override it. BOARD_HAVE_NEW_QC_GPS := diff --git a/power/power_ext.c b/power/power_ext.c deleted file mode 100644 index 4741337..0000000 --- a/power/power_ext.c +++ /dev/null @@ -1,57 +0,0 @@ -/* - * Copyright (c) 2014 The CyanogenMod 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. - */ - -#include -#include -#include - -#define LOG_TAG "PowerHAL_H_Ext" -#include - -#define TOUCHKEY_POWER "/sys/class/input/input2/enabled" -//#define SPEN_POWER "/sys/class/input/input3/enabled" -#define TSP_POWER "/sys/class/input/input4/enabled" -#define GPIO_KEYS_POWER "/sys/class/input/input18/enabled" - -static void sysfs_write(char *path, char *s) { - char buf[80]; - int len; - int fd = open(path, O_WRONLY); - - if (fd < 0) { - strerror_r(errno, buf, sizeof(buf)); - ALOGE("Error opening %s: %s\n", path, buf); - return; - } - - len = write(fd, s, strlen(s)); - if (len < 0) { - strerror_r(errno, buf, sizeof(buf)); - ALOGE("Error writing to %s: %s\n", path, buf); - } - - close(fd); -} - -void cm_power_set_interactive_ext(int on) { - ALOGD("%s: %s input devices", __func__, on ? "enabling" : "disabling"); - sysfs_write(TSP_POWER, on ? "1" : "0"); - sysfs_write(TOUCHKEY_POWER, on ? "1" : "0"); - //sysfs_write(SPEN_POWER, on ? "1" : "0"); - sysfs_write(GPIO_KEYS_POWER, on ? "1" : "0"); -} - -