aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorPaul Kocialkowski <contact@paulk.fr>2013-06-27 13:07:47 +0200
committerPaul Kocialkowski <contact@paulk.fr>2013-06-27 13:07:47 +0200
commitc99663fe46c3fc426d6f74ae146d1c5842764f1a (patch)
treeea8b39673534af2be8f0bf155dd135a83d9c5545 /include
parentb73c6cf5a94e1c7f9be38917f26da37e13fe452e (diff)
downloadexternal_libsamsung-ipc-c99663fe46c3fc426d6f74ae146d1c5842764f1a.zip
external_libsamsung-ipc-c99663fe46c3fc426d6f74ae146d1c5842764f1a.tar.gz
external_libsamsung-ipc-c99663fe46c3fc426d6f74ae146d1c5842764f1a.tar.bz2
Get rid of wakelocks, this should be dealt with on the upper layers
Change-Id: Iae3a43bc3019ee2bfdfc4ee3e3b2194b099372bc Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
Diffstat (limited to 'include')
-rw-r--r--include/Makefile.am1
-rw-r--r--include/wakelock.h27
2 files changed, 0 insertions, 28 deletions
diff --git a/include/Makefile.am b/include/Makefile.am
index 1ffde56..3ea4b55 100644
--- a/include/Makefile.am
+++ b/include/Makefile.am
@@ -19,5 +19,4 @@ samsung_ipcinclude_HEADERS = \
imei.h \
rfs.h \
gen.h \
- wakelock.h \
$(NULL)
diff --git a/include/wakelock.h b/include/wakelock.h
deleted file mode 100644
index d9dcdae..0000000
--- a/include/wakelock.h
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * This file is part of libsamsung-ipc.
- *
- * Copyright (C) 2012 Alexander Tarasikov <alexander.tarasikov@gmail.com>
- *
- * libsamsung-ipc is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 2 of the License, or
- * (at your option) any later version.
- *
- * libsamsung-ipc is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with libsamsung-ipc. If not, see <http://www.gnu.org/licenses/>.
- *
- */
-
-#ifndef __SAMSUNG_IPC_WAKELOCK_H__
-#define __SAMSUNG_IPC_WAKELOCK_H__
-
-extern int wake_lock(char *lock_name);
-extern int wake_unlock(char *lock_name);
-
-#endif