All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jakub Kicinski <kuba@kernel.org>
To: davem@davemloft.net
Cc: netdev@vger.kernel.org, edumazet@google.com, pabeni@redhat.com,
	uwe@kleine-koenig.org,
	"Uwe Kleine-König" <u.kleine-koenig@pengutronix.de>
Subject: [PATCH net-next v2 07/12] NFC: nxp-nci: Convert to i2c's .probe_new()
Date: Tue, 22 Nov 2022 20:55:02 -0800	[thread overview]
Message-ID: <20221123045507.2091409-8-kuba@kernel.org> (raw)
In-Reply-To: <20221123045507.2091409-1-kuba@kernel.org>

From: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>

The probe function doesn't make use of the i2c_device_id * parameter so it
can be trivially converted.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
---
 drivers/nfc/nxp-nci/i2c.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/drivers/nfc/nxp-nci/i2c.c b/drivers/nfc/nxp-nci/i2c.c
index ec6446511984..d4c299be7949 100644
--- a/drivers/nfc/nxp-nci/i2c.c
+++ b/drivers/nfc/nxp-nci/i2c.c
@@ -263,8 +263,7 @@ static const struct acpi_gpio_mapping acpi_nxp_nci_gpios[] = {
 	{ }
 };
 
-static int nxp_nci_i2c_probe(struct i2c_client *client,
-			    const struct i2c_device_id *id)
+static int nxp_nci_i2c_probe(struct i2c_client *client)
 {
 	struct device *dev = &client->dev;
 	struct nxp_nci_i2c_phy *phy;
@@ -349,7 +348,7 @@ static struct i2c_driver nxp_nci_i2c_driver = {
 		   .acpi_match_table = ACPI_PTR(acpi_id),
 		   .of_match_table = of_nxp_nci_i2c_match,
 		  },
-	.probe = nxp_nci_i2c_probe,
+	.probe_new = nxp_nci_i2c_probe,
 	.id_table = nxp_nci_i2c_id_table,
 	.remove = nxp_nci_i2c_remove,
 };
-- 
2.38.1


  parent reply	other threads:[~2022-11-23  4:55 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-23  4:54 [PATCH net-next v2 00/12] net: Complete conversion to i2c_probe_new Jakub Kicinski
2022-11-23  4:54 ` [PATCH net-next v2 01/12] net: dsa: lan9303: Convert to i2c's .probe_new() Jakub Kicinski
2022-11-23  4:54 ` [PATCH net-next v2 02/12] net: dsa: microchip: ksz9477: " Jakub Kicinski
2022-11-23  4:54 ` [PATCH net-next v2 03/12] net: dsa: xrs700x: " Jakub Kicinski
2022-11-23  4:54 ` [PATCH net-next v2 04/12] net/mlxsw: " Jakub Kicinski
2022-11-23  4:55 ` [PATCH net-next v2 05/12] nfc: microread: " Jakub Kicinski
2022-11-23  4:55 ` [PATCH net-next v2 06/12] nfc: mrvl: " Jakub Kicinski
2022-11-23  4:55 ` Jakub Kicinski [this message]
2022-11-23  4:55 ` [PATCH net-next v2 08/12] nfc: pn533: " Jakub Kicinski
2022-11-23  4:55 ` [PATCH net-next v2 09/12] nfc: pn544: " Jakub Kicinski
2022-11-23  4:55 ` [PATCH net-next v2 10/12] nfc: s3fwrn5: " Jakub Kicinski
2022-11-23  4:55 ` [PATCH net-next v2 11/12] nfc: st-nci: " Jakub Kicinski
2022-11-23  4:55 ` [PATCH net-next v2 12/12] nfc: st21nfca: i2c: " Jakub Kicinski
2022-11-23 21:00 ` [PATCH net-next v2 00/12] net: Complete conversion to i2c_probe_new patchwork-bot+netdevbpf

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=20221123045507.2091409-8-kuba@kernel.org \
    --to=kuba@kernel.org \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=u.kleine-koenig@pengutronix.de \
    --cc=uwe@kleine-koenig.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.