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

Commit bc284f94 authored by David S. Miller's avatar David S. Miller
Browse files

greth: Fix build after OF device conversions.

parent 64960848
Loading
Loading
Loading
Loading
+5 −6
Original line number Diff line number Diff line
@@ -1607,14 +1607,13 @@ static struct of_device_id greth_of_match[] = {
MODULE_DEVICE_TABLE(of, greth_of_match);

static struct of_platform_driver greth_of_driver = {
	.name = "grlib-greth",
	.match_table = greth_of_match,
	.probe = greth_of_probe,
	.remove = __devexit_p(greth_of_remove),
	.driver = {
		   .owner = THIS_MODULE,
		.name = "grlib-greth",
		.owner = THIS_MODULE,
		.of_match_table = greth_of_match,
	},
	.probe = greth_of_probe,
	.remove = __devexit_p(greth_of_remove),
};

static int __init greth_init(void)