summaryrefslogtreecommitdiffstats
path: root/list.h
diff options
context:
space:
mode:
authorMichael Bestas <mkbestas@lineageos.org>2018-06-09 16:27:44 +0300
committerMichael Bestas <mkbestas@lineageos.org>2019-10-23 01:12:56 +0300
commitb989cae4900c6647bd5fddfd9930c01e999025ea (patch)
treea961a859e5574740d7177180eb2ccd4bf1269267 /list.h
parentc9ed433d24c2807a33a25ed42ec57526063ac127 (diff)
downloadvendor_qcom_opensource_power-b989cae4900c6647bd5fddfd9930c01e999025ea.tar.gz
vendor_qcom_opensource_power-b989cae4900c6647bd5fddfd9930c01e999025ea.tar.bz2
vendor_qcom_opensource_power-b989cae4900c6647bd5fddfd9930c01e999025ea.zip
power: Remove unused list utils
* They were added in 6ec1206b246a164acfb0aa7b43af9b04c759063e but never used Change-Id: I0f0d0336cd91715eb8aa4dcb42ae1e449da8603b
Diffstat (limited to 'list.h')
-rw-r--r--list.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/list.h b/list.h
index 6e81d98..db666f2 100644
--- a/list.h
+++ b/list.h
@@ -34,8 +34,6 @@ struct list_node {
void (*dump)(void* data);
};
-int init_list_head(struct list_node* head);
struct list_node* add_list_node(struct list_node* head, void* data);
int remove_list_node(struct list_node* head, struct list_node* del_node);
-void dump_list(struct list_node* head);
struct list_node* find_node(struct list_node* head, void* comparison_data);