mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Eddie James <eajames@linux.ibm.com>
To: "Uwe Kleine-König" <u.kleine-koenig@baylibre.com>
Cc: Ninad Palsule <ninad@linux.ibm.com>,
	linux-fsi@lists.ozlabs.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 09/13] fsi: master: Convert to fsi bus probe mechanism
Date: Tue, 27 Jan 2026 09:27:55 -0600	[thread overview]
Message-ID: <dd339a12-1fd4-4117-ac36-806f7faeb381@linux.ibm.com> (raw)
In-Reply-To: <17686d71b4ad3f7ebb63e92453273095a5dd09ea.1765279318.git.u.kleine-koenig@baylibre.com>


On 12/9/25 5:40 AM, Uwe Kleine-König wrote:
> The fsi bus got a dedicated probe function. Make use of that. This fixes
> a runtime warning about the driver needing to be converted to the bus
> probe method.


Acked-by: Eddie James <eajames@linux.ibm.com>


>
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
> ---
>   drivers/fsi/fsi-master-hub.c | 16 +++++++---------
>   1 file changed, 7 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/fsi/fsi-master-hub.c b/drivers/fsi/fsi-master-hub.c
> index d389856d18ac..a84955bb23b1 100644
> --- a/drivers/fsi/fsi-master-hub.c
> +++ b/drivers/fsi/fsi-master-hub.c
> @@ -192,9 +192,9 @@ static int hub_master_init(struct fsi_master_hub *hub)
>   	return fsi_device_write(dev, FSI_MRESB0, &reg, sizeof(reg));
>   }
>   
> -static int hub_master_probe(struct device *dev)
> +static int hub_master_probe(struct fsi_device *fsi_dev)
>   {
> -	struct fsi_device *fsi_dev = to_fsi_dev(dev);
> +	struct device *dev = &fsi_dev->dev;
>   	struct fsi_master_hub *hub;
>   	uint32_t reg, links;
>   	__be32 __reg;
> @@ -235,7 +235,7 @@ static int hub_master_probe(struct device *dev)
>   	hub->master.send_break = hub_master_break;
>   	hub->master.link_enable = hub_master_link_enable;
>   
> -	dev_set_drvdata(dev, hub);
> +	fsi_set_drvdata(fsi_dev, hub);
>   
>   	hub_master_init(hub);
>   
> @@ -259,9 +259,9 @@ static int hub_master_probe(struct device *dev)
>   	return rc;
>   }
>   
> -static int hub_master_remove(struct device *dev)
> +static void hub_master_remove(struct fsi_device *fsi_dev)
>   {
> -	struct fsi_master_hub *hub = dev_get_drvdata(dev);
> +	struct fsi_master_hub *hub = fsi_get_drvdata(fsi_dev);
>   
>   	fsi_master_unregister(&hub->master);
>   	fsi_slave_release_range(hub->upstream->slave, hub->addr, hub->size);
> @@ -272,8 +272,6 @@ static int hub_master_remove(struct device *dev)
>   	 * the hub
>   	 */
>   	put_device(&hub->master.dev);
> -
> -	return 0;
>   }
>   
>   static const struct fsi_device_id hub_master_ids[] = {
> @@ -286,10 +284,10 @@ static const struct fsi_device_id hub_master_ids[] = {
>   
>   static struct fsi_driver hub_master_driver = {
>   	.id_table = hub_master_ids,
> +	.probe = hub_master_probe,
> +	.remove = hub_master_remove,
>   	.drv = {
>   		.name = "fsi-master-hub",
> -		.probe = hub_master_probe,
> -		.remove = hub_master_remove,
>   	}
>   };
>   

  reply	other threads:[~2026-01-27 15:28 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-12-09 11:39 [PATCH v2 00/13] fsi: Convert to " Uwe Kleine-König
2025-12-09 11:40 ` [PATCH v2 01/13] fsi: Make use of module_fsi_driver() Uwe Kleine-König
2026-01-27 15:25   ` Eddie James
2025-12-09 11:40 ` [PATCH v2 02/13] fsi: Assign driver's bus in fsi_driver_register() Uwe Kleine-König
2026-01-27 15:25   ` Eddie James
2025-12-09 11:40 ` [PATCH v2 03/13] fsi: Provide thin wrappers around dev_[gs]et_data() for fsi devices Uwe Kleine-König
2026-01-27 15:25   ` Eddie James
2025-12-09 11:40 ` [PATCH v2 04/13] i2c: fsi: Drop assigning fsi bus Uwe Kleine-König
2026-01-27 15:26   ` Eddie James
2025-12-09 11:40 ` [PATCH v2 05/13] spi: " Uwe Kleine-König
2026-01-27 15:26   ` Eddie James
2025-12-09 11:40 ` [PATCH v2 06/13] fsi: Make fsi_bus_type a private variable to the core Uwe Kleine-König
2026-01-27 15:26   ` Eddie James
2025-12-09 11:40 ` [PATCH v2 07/13] fsi: Create bus specific probe and remove functions Uwe Kleine-König
2026-01-27 15:27   ` Eddie James
2025-12-09 11:40 ` [PATCH v2 08/13] fsi: i2cr-scom: Convert to fsi bus probe mechanism Uwe Kleine-König
2026-01-27 15:27   ` Eddie James
2025-12-09 11:40 ` [PATCH v2 09/13] fsi: master: " Uwe Kleine-König
2026-01-27 15:27   ` Eddie James [this message]
2025-12-09 11:40 ` [PATCH v2 10/13] fsi: sbefifo: " Uwe Kleine-König
2026-01-27 15:28   ` Eddie James
2025-12-09 11:40 ` [PATCH v2 11/13] fsi: scom: " Uwe Kleine-König
2026-01-27 15:28   ` Eddie James
2025-12-09 11:40 ` [PATCH v2 12/13] i2c: fsi: " Uwe Kleine-König
2026-01-27 15:29   ` Eddie James
2025-12-09 11:40 ` [PATCH v2 13/13] spi: " Uwe Kleine-König
2026-01-27 15:29   ` Eddie James
2026-01-12  9:47 ` [PATCH v2 00/13] fsi: Convert to " Uwe Kleine-König
2026-01-27 15:31   ` Eddie James

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=dd339a12-1fd4-4117-ac36-806f7faeb381@linux.ibm.com \
    --to=eajames@linux.ibm.com \
    --cc=linux-fsi@lists.ozlabs.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=ninad@linux.ibm.com \
    --cc=u.kleine-koenig@baylibre.com \
    /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

all inboxes | Powered by JetHome®