Commit ca948312 authored by Fabio Estevam's avatar Fabio Estevam Committed by Chanwoo Choi
Browse files

PM / devfreq: imx-bus: Remove unneeded of_match_ptr()



i.MX is a DT-only platform, so of_match_ptr() can be safely
removed.

Remove the unneeded of_match_ptr().

Signed-off-by: default avatarFabio Estevam <festevam@gmail.com>
Signed-off-by: default avatarChanwoo Choi <cw00.choi@samsung.com>
parent 6c4b264c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -169,7 +169,7 @@ static struct platform_driver imx_bus_platdrv = {
	.probe		= imx_bus_probe,
	.driver = {
		.name	= "imx-bus-devfreq",
		.of_match_table = of_match_ptr(imx_bus_of_match),
		.of_match_table = imx_bus_of_match,
	},
};
module_platform_driver(imx_bus_platdrv);