Commit ad55c5c0 authored by Andrew Davis's avatar Andrew Davis Committed by Jassi Brar
Browse files

mailbox: ti-msgmgr: 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: default avatarAndrew Davis <afd@ti.com>
Acked-by: default avatarArnd Bergmann <arnd@arndb.de>
Reviewed-by: default avatarNishanth Menon <nm@ti.com>
Signed-off-by: default avatarJassi Brar <jassisinghbrar@gmail.com>
parent bfa0e78d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -920,7 +920,7 @@ static struct platform_driver ti_msgmgr_driver = {
	.probe = ti_msgmgr_probe,
	.driver = {
		   .name = "ti-msgmgr",
		   .of_match_table = of_match_ptr(ti_msgmgr_of_match),
		   .of_match_table = ti_msgmgr_of_match,
		   .pm = &ti_msgmgr_pm_ops,
	},
};