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

Commit b10b45c0 authored by Sachin Kamat's avatar Sachin Kamat Committed by Linus Walleij
Browse files

gpio: tb10x: Remove redundant of_match_ptr helper



'tb10x_gpio_dt_ids' is always compiled in. Hence the
helper macro is not needed.

Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 3509c6fa
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -318,7 +318,7 @@ static struct platform_driver tb10x_gpio_driver = {
	.remove		= tb10x_gpio_remove,
	.remove		= tb10x_gpio_remove,
	.driver = {
	.driver = {
		.name	= "tb10x-gpio",
		.name	= "tb10x-gpio",
		.of_match_table = of_match_ptr(tb10x_gpio_dt_ids),
		.of_match_table = tb10x_gpio_dt_ids,
		.owner	= THIS_MODULE,
		.owner	= THIS_MODULE,
	}
	}
};
};