From 7656aa0f48c85953f47055001b314d275921d7dc Mon Sep 17 00:00:00 2001 From: Choonghoon Park Date: Tue, 23 Feb 2021 14:38:32 +0900 Subject: [PATCH] ANDROID: lib/plist.c: Export plist-related APIs Export plist_add(), plist_del() and plist_requeue() for vendor modules. Bug: 180865128 Signed-off-by: Choonghoon Park Change-Id: I0b6fd9becd04428d998c2ce031804bec6ff87be5 --- lib/plist.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/plist.c b/lib/plist.c index 0d86ed7a76ac..4b2334f1b6f4 100644 --- a/lib/plist.c +++ b/lib/plist.c @@ -102,6 +102,7 @@ void plist_add(struct plist_node *node, struct plist_head *head) plist_check_head(head); } +EXPORT_SYMBOL_GPL(plist_add); /** * plist_del - Remove a @node from plist. @@ -131,6 +132,7 @@ void plist_del(struct plist_node *node, struct plist_head *head) plist_check_head(head); } +EXPORT_SYMBOL_GPL(plist_del); /** * plist_requeue - Requeue @node at end of same-prio entries. @@ -171,6 +173,7 @@ void plist_requeue(struct plist_node *node, struct plist_head *head) plist_check_head(head); } +EXPORT_SYMBOL_GPL(plist_requeue); #ifdef CONFIG_DEBUG_PLIST #include