From: Krzysztof Kozlowski Date: Fri, 30 Jul 2021 14:41:58 +0000 (+0200) Subject: nfc: hci: annotate nfc_llc_init() as __init X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=4932c37878c9c68b8f0cffc6848125ce4437a27d;p=linux.git nfc: hci: annotate nfc_llc_init() as __init The nfc_llc_init() is used only in other __init annotated context. Signed-off-by: Krzysztof Kozlowski Signed-off-by: Jakub Kicinski --- diff --git a/net/nfc/hci/llc.c b/net/nfc/hci/llc.c index fc6b63de34625..2140f67246441 100644 --- a/net/nfc/hci/llc.c +++ b/net/nfc/hci/llc.c @@ -11,7 +11,7 @@ static LIST_HEAD(llc_engines); -int nfc_llc_init(void) +int __init nfc_llc_init(void) { int r;