Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0be9e70d authored by Axel Lin's avatar Axel Lin Committed by Linus Walleij
Browse files

pinctrl: rockchip: Remove of_match_ptr macro for DT only driver



This is a DT only driver and rockchip_pinctrl_dt_match is always compiled in.
Thus remove of_match_ptr macro.

Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 63ca8db7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1365,7 +1365,7 @@ static struct platform_driver rockchip_pinctrl_driver = {
	.driver = {
		.name	= "rockchip-pinctrl",
		.owner	= THIS_MODULE,
		.of_match_table = of_match_ptr(rockchip_pinctrl_dt_match),
		.of_match_table = rockchip_pinctrl_dt_match,
	},
};