Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1370941 > unrolled thread

[RESEND PATCH] mfd: max77686: Use module_i2c_driver() instead of subsys initcall

Started byJavier Martinez Canillas <javier@osg.samsung.com>
First post2016-04-05 00:50 +0200
Last post2016-04-11 14:00 +0200
Articles 4 — 4 participants

Back to article view | Back to linux.kernel


Contents

  [RESEND PATCH] mfd: max77686: Use module_i2c_driver() instead of subsys initcall Javier Martinez Canillas <javier@osg.samsung.com> - 2016-04-05 00:50 +0200
    Re: [RESEND PATCH] mfd: max77686: Use module_i2c_driver() instead of  subsys initcall Krzysztof Kozlowski <k.kozlowski@samsung.com> - 2016-04-05 04:00 +0200
    Re: [RESEND PATCH] mfd: max77686: Use module_i2c_driver() instead of  subsys initcall Andi Shyti <andi.shyti@samsung.com> - 2016-04-05 04:00 +0200
    Re: [RESEND PATCH] mfd: max77686: Use module_i2c_driver() instead of  subsys initcall Lee Jones <lee.jones@linaro.org> - 2016-04-11 14:00 +0200

#1370941 — [RESEND PATCH] mfd: max77686: Use module_i2c_driver() instead of subsys initcall

FromJavier Martinez Canillas <javier@osg.samsung.com>
Date2016-04-05 00:50 +0200
Subject[RESEND PATCH] mfd: max77686: Use module_i2c_driver() instead of subsys initcall
Message-ID<rkltM-1F6-11@gated-at.bofh.it>
The driver's init and exit function don't do anything besides adding and
deleting the I2C driver so the module_i2c_driver() macro could be used.

Currently is not being used because the driver is initialized at subsys
initcall level, claiming that this is done to allow consumers devices to
use the resources provided by this driver. But dependencies are in DT so
manual ordering of init calls is not necessary any more.

Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>

---

Changes in the resend:
- Change commit message to make clear that dependencies are in DT instead
  giving the impression that it was wishful thinking (Krzysztof Kozlowski).

Hello,

This patch was first sent as a part of a bigger series to allow the
max77686 MFD driver to be built as a module [0]. The other patches
were already picked but $SUBJECT wasn't, probably because there was
a dependency with a patch on the exynos thermal driver [1].

But the exynos thermal patches also landed in mainline so I think it
should be safe to merged $SUBJECT now.

[0]: https://lkml.org/lkml/2016/2/11/857
[1]: https://lkml.org/lkml/2016/2/18/592

Best regards,
Javier

 drivers/mfd/max77686.c | 13 +------------
 1 file changed, 1 insertion(+), 12 deletions(-)

diff --git a/drivers/mfd/max77686.c b/drivers/mfd/max77686.c
index c1aff46e89d9..66cc9bebb7ba 100644
--- a/drivers/mfd/max77686.c
+++ b/drivers/mfd/max77686.c
@@ -321,18 +321,7 @@ static struct i2c_driver max77686_i2c_driver = {
 	.id_table = max77686_i2c_id,
 };
 
-static int __init max77686_i2c_init(void)
-{
-	return i2c_add_driver(&max77686_i2c_driver);
-}
-/* init early so consumer devices can complete system boot */
-subsys_initcall(max77686_i2c_init);
-
-static void __exit max77686_i2c_exit(void)
-{
-	i2c_del_driver(&max77686_i2c_driver);
-}
-module_exit(max77686_i2c_exit);
+module_i2c_driver(max77686_i2c_driver);
 
 MODULE_DESCRIPTION("MAXIM 77686/802 multi-function core driver");
 MODULE_AUTHOR("Chiwoong Byun <woong.byun@samsung.com>");
-- 
2.5.0

[toc] | [next] | [standalone]


#1371115 — Re: [RESEND PATCH] mfd: max77686: Use module_i2c_driver() instead of subsys initcall

FromKrzysztof Kozlowski <k.kozlowski@samsung.com>
Date2016-04-05 04:00 +0200
SubjectRe: [RESEND PATCH] mfd: max77686: Use module_i2c_driver() instead of subsys initcall
Message-ID<rkorF-3JL-25@gated-at.bofh.it>
In reply to#1370941
On 05.04.2016 07:46, Javier Martinez Canillas wrote:
> The driver's init and exit function don't do anything besides adding and
> deleting the I2C driver so the module_i2c_driver() macro could be used.
> 
> Currently is not being used because the driver is initialized at subsys
> initcall level, claiming that this is done to allow consumers devices to
> use the resources provided by this driver. But dependencies are in DT so
> manual ordering of init calls is not necessary any more.
> 
> Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
> 
> ---
> 
> Changes in the resend:
> - Change commit message to make clear that dependencies are in DT instead
>   giving the impression that it was wishful thinking (Krzysztof Kozlowski).
> 
> Hello,
> 
> This patch was first sent as a part of a bigger series to allow the
> max77686 MFD driver to be built as a module [0]. The other patches
> were already picked but $SUBJECT wasn't, probably because there was
> a dependency with a patch on the exynos thermal driver [1].
> 
> But the exynos thermal patches also landed in mainline so I think it
> should be safe to merged $SUBJECT now.
> 
> [0]: https://lkml.org/lkml/2016/2/11/857
> [1]: https://lkml.org/lkml/2016/2/18/592
> 
> Best regards,
> Javier
> 
>  drivers/mfd/max77686.c | 13 +------------
>  1 file changed, 1 insertion(+), 12 deletions(-)
> 

Reviewed-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>



Best regards,

Krzysztof

[toc] | [prev] | [next] | [standalone]


#1371118 — Re: [RESEND PATCH] mfd: max77686: Use module_i2c_driver() instead of subsys initcall

FromAndi Shyti <andi.shyti@samsung.com>
Date2016-04-05 04:00 +0200
SubjectRe: [RESEND PATCH] mfd: max77686: Use module_i2c_driver() instead of subsys initcall
Message-ID<rkorF-3JL-29@gated-at.bofh.it>
In reply to#1370941
Hi Javier,

> The driver's init and exit function don't do anything besides adding and
> deleting the I2C driver so the module_i2c_driver() macro could be used.
> 
> Currently is not being used because the driver is initialized at subsys
> initcall level, claiming that this is done to allow consumers devices to
> use the resources provided by this driver. But dependencies are in DT so
> manual ordering of init calls is not necessary any more.
> 
> Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>

Reviewed-by: Andi Shyti <andi.shyti@samsung.com>

Thanks,
Andi

[toc] | [prev] | [next] | [standalone]


#1375752 — Re: [RESEND PATCH] mfd: max77686: Use module_i2c_driver() instead of subsys initcall

FromLee Jones <lee.jones@linaro.org>
Date2016-04-11 14:00 +0200
SubjectRe: [RESEND PATCH] mfd: max77686: Use module_i2c_driver() instead of subsys initcall
Message-ID<rmIFA-5ju-13@gated-at.bofh.it>
In reply to#1370941
On Mon, 04 Apr 2016, Javier Martinez Canillas wrote:

> The driver's init and exit function don't do anything besides adding and
> deleting the I2C driver so the module_i2c_driver() macro could be used.
> 
> Currently is not being used because the driver is initialized at subsys
> initcall level, claiming that this is done to allow consumers devices to
> use the resources provided by this driver. But dependencies are in DT so
> manual ordering of init calls is not necessary any more.
> 
> Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
> 
> ---
> 
> Changes in the resend:
> - Change commit message to make clear that dependencies are in DT instead
>   giving the impression that it was wishful thinking (Krzysztof Kozlowski).
> 
> Hello,
> 
> This patch was first sent as a part of a bigger series to allow the
> max77686 MFD driver to be built as a module [0]. The other patches
> were already picked but $SUBJECT wasn't, probably because there was
> a dependency with a patch on the exynos thermal driver [1].
> 
> But the exynos thermal patches also landed in mainline so I think it
> should be safe to merged $SUBJECT now.
> 
> [0]: https://lkml.org/lkml/2016/2/11/857
> [1]: https://lkml.org/lkml/2016/2/18/592
> 
> Best regards,
> Javier
> 
>  drivers/mfd/max77686.c | 13 +------------
>  1 file changed, 1 insertion(+), 12 deletions(-)

Applied, thanks.

> diff --git a/drivers/mfd/max77686.c b/drivers/mfd/max77686.c
> index c1aff46e89d9..66cc9bebb7ba 100644
> --- a/drivers/mfd/max77686.c
> +++ b/drivers/mfd/max77686.c
> @@ -321,18 +321,7 @@ static struct i2c_driver max77686_i2c_driver = {
>  	.id_table = max77686_i2c_id,
>  };
>  
> -static int __init max77686_i2c_init(void)
> -{
> -	return i2c_add_driver(&max77686_i2c_driver);
> -}
> -/* init early so consumer devices can complete system boot */
> -subsys_initcall(max77686_i2c_init);
> -
> -static void __exit max77686_i2c_exit(void)
> -{
> -	i2c_del_driver(&max77686_i2c_driver);
> -}
> -module_exit(max77686_i2c_exit);
> +module_i2c_driver(max77686_i2c_driver);
>  
>  MODULE_DESCRIPTION("MAXIM 77686/802 multi-function core driver");
>  MODULE_AUTHOR("Chiwoong Byun <woong.byun@samsung.com>");

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web