Re: [PATCH] gpio: zynq: add missing module_exit function

From: Michal Simek
Date: Thu Jun 18 2015 - 07:25:16 EST


On 06/17/2015 10:51 AM, Masahiro Yamada wrote:
> This driver is tristate, so it should be cleanable.
>
> Signed-off-by: Masahiro Yamada <yamada.masahiro@xxxxxxxxxxxxx>
> ---
>
> drivers/gpio/gpio-zynq.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/drivers/gpio/gpio-zynq.c b/drivers/gpio/gpio-zynq.c
> index 184c4b1..1d38da7 100644
> --- a/drivers/gpio/gpio-zynq.c
> +++ b/drivers/gpio/gpio-zynq.c
> @@ -722,6 +722,12 @@ static int __init zynq_gpio_init(void)
> }
> postcore_initcall(zynq_gpio_init);
>
> +static void __exit zynq_gpio_exit(void)
> +{
> + platform_driver_unregister(&zynq_gpio_driver);
> +}
> +module_exit(zynq_gpio_exit);
> +
> MODULE_AUTHOR("Xilinx Inc.");
> MODULE_DESCRIPTION("Zynq GPIO driver");
> MODULE_LICENSE("GPL");
>

Looks reasonable to me.

Tested-by: Michal Simek <michal.simek@xxxxxxxxxx>

Thanks,
Michal

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/