From: Andrew Davis Date: Tue, 15 Oct 2024 21:33:20 +0000 (-0500) Subject: firmware: ti_sci: Remove use of of_match_ptr() helper X-Git-Tag: v6.13-rc1~139^2~5^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a4c14f509509a6a24f25edb7619f55f204a8433f;p=thirdparty%2Fkernel%2Flinux.git firmware: ti_sci: Remove use of of_match_ptr() helper When OF support is disabled the of_device_id struct match table can be conditionally compiled out, this helper allows the assignment to also be turned into a NULL conditionally. When the of_device_id struct is not conditionally defined based on OF then the table will be unused causing a warning. The two options are to either set the table as _maybe_unused, or to just remove this helper since the table will always be defined. Do the latter here. Signed-off-by: Andrew Davis Link: https://lore.kernel.org/r/20241015213322.2649011-2-afd@ti.com Signed-off-by: Nishanth Menon --- diff --git a/drivers/firmware/ti_sci.c b/drivers/firmware/ti_sci.c index 555e41cc08080..806a975fff22a 100644 --- a/drivers/firmware/ti_sci.c +++ b/drivers/firmware/ti_sci.c @@ -3905,7 +3905,7 @@ static struct platform_driver ti_sci_driver = { .probe = ti_sci_probe, .driver = { .name = "ti-sci", - .of_match_table = of_match_ptr(ti_sci_of_match), + .of_match_table = ti_sci_of_match, .suppress_bind_attrs = true, .pm = &ti_sci_pm_ops, },