Commit bf6cd772 authored by Krzysztof Kozlowski's avatar Krzysztof Kozlowski Committed by Jakub Kicinski
Browse files

nfc: annotate af_nfc_exit() as __exit



The af_nfc_exit() is used only in other __exit annotated context
(nfc_exit()).

Signed-off-by: default avatarKrzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 3833b874
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -79,7 +79,7 @@ int __init af_nfc_init(void)
	return sock_register(&nfc_sock_family_ops);
}

void af_nfc_exit(void)
void __exit af_nfc_exit(void)
{
	sock_unregister(PF_NFC);
}