crypto: omap-des - drop of_match_ptr from OF match table

Drop of_match_ptr() because OF matching is stubbed out when CONFIG_OF=n.

Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
Thorsten Blum 2026-05-17 12:36:52 +02:00 committed by Herbert Xu
parent 083c9ab12c
commit 0a06b86d4b

View File

@ -1117,7 +1117,7 @@ static struct platform_driver omap_des_driver = {
.driver = {
.name = "omap-des",
.pm = &omap_des_pm_ops,
.of_match_table = of_match_ptr(omap_des_of_match),
.of_match_table = omap_des_of_match,
},
};