linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
To: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>,
	"David S. Miller" <davem@davemloft.net>,
	Jakub Kicinski <kuba@kernel.org>,
	Bongsu Jeon <bongsu.jeon@samsung.com>,
	netdev@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [PATCH 1/7] nfc: annotate af_nfc_exit() as __exit
Date: Mon, 26 Jul 2021 16:52:18 +0200	[thread overview]
Message-ID: <20210726145224.146006-2-krzysztof.kozlowski@canonical.com> (raw)
In-Reply-To: <20210726145224.146006-1-krzysztof.kozlowski@canonical.com>

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

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
---
 net/nfc/af_nfc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/nfc/af_nfc.c b/net/nfc/af_nfc.c
index 4a9e72073564..6024fad905ff 100644
--- a/net/nfc/af_nfc.c
+++ b/net/nfc/af_nfc.c
@@ -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);
 }
-- 
2.27.0


  reply	other threads:[~2021-07-26 14:52 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-26 14:52 [PATCH 0/7] nfc: constify pointed data Krzysztof Kozlowski
2021-07-26 14:52 ` Krzysztof Kozlowski [this message]
2021-07-26 14:52 ` [PATCH 2/7] nfc: hci: annotate nfc_llc_init() as __init Krzysztof Kozlowski
2021-07-26 14:52 ` [PATCH 3/7] nfc: constify several pointers to u8, char and sk_buff Krzysztof Kozlowski
2021-07-26 14:52 ` [PATCH 4/7] nfc: constify local pointer variables Krzysztof Kozlowski
2021-07-26 14:52 ` [PATCH 5/7] nfc: nci: constify several pointers to u8, sk_buff and other structs Krzysztof Kozlowski
2021-07-26 14:52 ` [PATCH 6/7] nfc: hci: pass callback data param as pointer in nci_request() Krzysztof Kozlowski
2021-07-26 14:52 ` [PATCH 7/7] nfc: hci: cleanup unneeded spaces Krzysztof Kozlowski

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210726145224.146006-2-krzysztof.kozlowski@canonical.com \
    --to=krzysztof.kozlowski@canonical.com \
    --cc=bongsu.jeon@samsung.com \
    --cc=davem@davemloft.net \
    --cc=kuba@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).