[PATCH 4/6] soc: mediatek: mtk-svs: Drop of_match_ptr() for of_match_table

Matthias Brugger matthias.bgg at gmail.com
Thu Aug 25 06:28:30 PDT 2022



On 26/07/2022 16:16, AngeloGioacchino Del Regno wrote:
> If CONFIG_OF is not set, we get a -Wunused-const-variable: dropping
> of_match_ptr() solves that issue.
> 
> Fixes: 681a02e95000 ("soc: mediatek: SVS: introduce MTK SVS engine")
> Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno at collabora.com>

Applied, thanks

> ---
>   drivers/soc/mediatek/mtk-svs.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/soc/mediatek/mtk-svs.c b/drivers/soc/mediatek/mtk-svs.c
> index fcf246a6bb07..80d0bab1a045 100644
> --- a/drivers/soc/mediatek/mtk-svs.c
> +++ b/drivers/soc/mediatek/mtk-svs.c
> @@ -2840,7 +2840,7 @@ static struct platform_driver svs_driver = {
>   	.driver	= {
>   		.name		= "mtk-svs",
>   		.pm		= &svs_pm_ops,
> -		.of_match_table	= of_match_ptr(svs_of_match),
> +		.of_match_table	= svs_of_match,
>   	},
>   };
>   



More information about the linux-arm-kernel mailing list