From: Kay Sievers <[email protected]>
Since 43cc71eed1250755986da4c0f9898f9a635cb3bf, the platform
modalias is prefixed with "platform:". Add MODULE_ALIAS() to most
of the hotpluggable platform drivers, to re-enable auto loading.
Signed-off-by: Kay Sievers <[email protected]>
Signed-off-by: David Brownell <[email protected]>
---
drivers/dma/iop-adma.c | 2 ++
1 file changed, 2 insertions(+)
--- a/drivers/dma/iop-adma.c 2008-07-01 23:58:22.000000000 -0700
+++ b/drivers/dma/iop-adma.c 2008-07-02 00:00:19.000000000 -0700
@@ -1387,6 +1387,8 @@ static void iop_chan_start_null_xor(stru
spin_unlock_bh(&iop_chan->lock);
}
+MODULE_ALIAS("platform:iop-adma");
+
static struct platform_driver iop_adma_driver = {
.probe = iop_adma_probe,
.remove = iop_adma_remove,
David Brownell wrote:
> From: Kay Sievers <[email protected]>
>
> Since 43cc71eed1250755986da4c0f9898f9a635cb3bf, the platform
> modalias is prefixed with "platform:". Add MODULE_ALIAS() to most
> of the hotpluggable platform drivers, to re-enable auto loading.
>
> Signed-off-by: Kay Sievers <[email protected]>
> Signed-off-by: David Brownell <[email protected]>
> ---
> drivers/dma/iop-adma.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> --- a/drivers/dma/iop-adma.c 2008-07-01 23:58:22.000000000 -0700
> +++ b/drivers/dma/iop-adma.c 2008-07-02 00:00:19.000000000 -0700
> @@ -1387,6 +1387,8 @@ static void iop_chan_start_null_xor(stru
> spin_unlock_bh(&iop_chan->lock);
> }
>
> +MODULE_ALIAS("platform:iop-adma");
> +
> static struct platform_driver iop_adma_driver = {
> .probe = iop_adma_probe,
> .remove = iop_adma_remove,
Acked-by: Maciej Sosnowski <[email protected]>