diff options
author | Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> | 2021-07-30 16:41:58 +0200 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2021-07-30 17:22:51 +0200 |
commit | 4932c37878c9c68b8f0cffc6848125ce4437a27d (patch) | |
tree | 49af680f5513cf6d50c7eaaccb13675c20d7e479 /net/nfc | |
parent | bf6cd7720b08571875ccdbcb6449e11d8415a283 (diff) | |
download | linux-rt-4932c37878c9c68b8f0cffc6848125ce4437a27d.tar.gz |
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 <krzysztof.kozlowski@canonical.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/nfc')
-rw-r--r-- | net/nfc/hci/llc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/nfc/hci/llc.c b/net/nfc/hci/llc.c index fc6b63de3462..2140f6724644 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; |