Re: [PATCH -next 2/9] soc: pxa: ssp: fix module autoloading
From: Arnd Bergmann
Date: Mon Aug 19 2024 - 07:51:36 EST
On Mon, Aug 19, 2024, at 13:38, Yuntao Liu wrote:
> Add MODULE_DEVICE_TABLE(), so modules could be properly autoloaded
> based on the alias from platform_device_id table.
>
> Signed-off-by: Yuntao Liu <liuyuntao12@xxxxxxxxxx>
> ---
> drivers/soc/pxa/ssp.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/soc/pxa/ssp.c b/drivers/soc/pxa/ssp.c
> index 854d32e04558..6ac3f376d030 100644
> --- a/drivers/soc/pxa/ssp.c
> +++ b/drivers/soc/pxa/ssp.c
> @@ -194,6 +194,7 @@ static const struct platform_device_id ssp_id_table[] = {
> { "pxa910-ssp", PXA910_SSP },
> { },
> };
> +MODULE_DEVICE_TABLE(platform, ssp_id_table);
>
I think we can drop support for legacy probing early next
year when the last pxa board files are gone, so this is
no longer needed.
Arnd