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

Commit 9067bbe5 authored by Felipe Balbi's avatar Felipe Balbi Committed by Linus Walleij
Browse files

pinctrl: baytrail: add missing module removal support



pinctrl-baytrail driver provides a proper ->remove()
method on its platform_driver definition, however there's
no way, currently, to unload the driver due to missing
module_exit(). This patch adds module_exit().

Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
Acked-by: default avatarDavid Cohen <david.a.cohen@linux.intel.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 1f2b0452
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -612,5 +612,10 @@ static int __init byt_gpio_init(void)
{
	return platform_driver_register(&byt_gpio_driver);
}

subsys_initcall(byt_gpio_init);

static void __exit byt_gpio_exit(void)
{
	platform_driver_unregister(&byt_gpio_driver);
}
module_exit(byt_gpio_exit);