Re: [RFC] drivercore: Add helper macro for platform_driverboilerplate

From: Tabi Timur-B04825
Date: Thu Oct 06 2011 - 14:35:36 EST


On Tue, Oct 4, 2011 at 6:26 PM, Grant Likely <grant.likely@xxxxxxxxxxxx> wrote:

> diff --git a/drivers/spi/spi-coldfire-qspi.c b/drivers/spi/spi-coldfire-qspi.c
> index ae2cd1c..7795d4d 100644
> --- a/drivers/spi/spi-coldfire-qspi.c
> +++ b/drivers/spi/spi-coldfire-qspi.c
> @@ -621,20 +621,10 @@ static struct platform_driver mcfqspi_driver = {
>        .driver.name    = DRIVER_NAME,
>        .driver.owner   = THIS_MODULE,
>        .driver.pm      = MCFQSPI_DEV_PM_OPS,
> +       .probe          = mcfqspi_probe,
>        .remove         = __devexit_p(mcfqspi_remove),
>  };

So I had no idea that platform_driver_probe() existed. It looks like
I function I should be using for SOC devices. But I'm confused by one
thing. That function says it's for non-hotpluggable devices. I don't
see in module_platform_driver() where you honor that restriction. It
looks like you're replacing the non-hotpluggable probe with a
hotpluggable probe.

--
Timur Tabi
Linux kernel developer at Freescale
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/