Re: [PATCH v1 2/2] interconnect: Remove unused module exit code from core

From: Bjorn Andersson
Date: Thu Oct 31 2019 - 14:32:40 EST


On Thu 31 Oct 11:28 PDT 2019, Jordan Crouse wrote:

> The interconnect core is currently always built in:
>
> menuconfig INTERCONNECT
> bool "On-Chip Interconnect management support"
>
> So remove the module_exit function and symbolically rename module_init
> to device_initcall to drive home the point.
>
> Signed-off-by: Jordan Crouse <jcrouse@xxxxxxxxxxxxxx>

Reviewed-by: Bjorn Andersson <bjorn.andersson@xxxxxxxxxx>

> ---
>
> drivers/interconnect/core.c | 7 +------
> 1 file changed, 1 insertion(+), 6 deletions(-)
>
> diff --git a/drivers/interconnect/core.c b/drivers/interconnect/core.c
> index c498796..61aba50 100644
> --- a/drivers/interconnect/core.c
> +++ b/drivers/interconnect/core.c
> @@ -805,12 +805,7 @@ static int __init icc_init(void)
> return 0;
> }
>
> -static void __exit icc_exit(void)
> -{
> - debugfs_remove_recursive(icc_debugfs_dir);
> -}
> -module_init(icc_init);
> -module_exit(icc_exit);
> +device_initcall(icc_init);
>
> MODULE_AUTHOR("Georgi Djakov <georgi.djakov@xxxxxxxxxx>");
> MODULE_DESCRIPTION("Interconnect Driver Core");
> --
> 2.7.4
>