All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] of: Drop owner assignment from platform and i2c driver
@ 2015-07-10  6:26 ` Krzysztof Kozlowski
  0 siblings, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2015-07-10  6:26 UTC (permalink / raw)
  To: Grant Likely, Rob Herring,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE, open list
  Cc: Krzysztof Kozlowski

platform_driver and i2c_driver do not need to set an owner because core
will set it.

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

---

The coccinelle script which generated the patch was sent here:
http://www.spinics.net/lists/kernel/msg2029903.html
---
 drivers/of/unittest.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/drivers/of/unittest.c b/drivers/of/unittest.c
index 18016341d5a9..9f71770b6226 100644
--- a/drivers/of/unittest.c
+++ b/drivers/of/unittest.c
@@ -979,7 +979,6 @@ static struct platform_driver unittest_driver = {
 	.remove			= unittest_remove,
 	.driver = {
 		.name		= "unittest",
-		.owner		= THIS_MODULE,
 		.of_match_table	= of_match_ptr(unittest_match),
 	},
 };
@@ -1666,7 +1665,6 @@ static const struct i2c_device_id unittest_i2c_dev_id[] = {
 static struct i2c_driver unittest_i2c_dev_driver = {
 	.driver = {
 		.name = "unittest-i2c-dev",
-		.owner = THIS_MODULE,
 	},
 	.probe = unittest_i2c_dev_probe,
 	.remove = unittest_i2c_dev_remove,
@@ -1761,7 +1759,6 @@ static const struct i2c_device_id unittest_i2c_mux_id[] = {
 static struct i2c_driver unittest_i2c_mux_driver = {
 	.driver = {
 		.name = "unittest-i2c-mux",
-		.owner = THIS_MODULE,
 	},
 	.probe = unittest_i2c_mux_probe,
 	.remove = unittest_i2c_mux_remove,
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH] of: Drop owner assignment from platform and i2c driver
@ 2015-07-10  6:26 ` Krzysztof Kozlowski
  0 siblings, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2015-07-10  6:26 UTC (permalink / raw)
  To: Grant Likely, Rob Herring,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE, open list
  Cc: Krzysztof Kozlowski

platform_driver and i2c_driver do not need to set an owner because core
will set it.

Signed-off-by: Krzysztof Kozlowski <k.kozlowski-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>

---

The coccinelle script which generated the patch was sent here:
http://www.spinics.net/lists/kernel/msg2029903.html
---
 drivers/of/unittest.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/drivers/of/unittest.c b/drivers/of/unittest.c
index 18016341d5a9..9f71770b6226 100644
--- a/drivers/of/unittest.c
+++ b/drivers/of/unittest.c
@@ -979,7 +979,6 @@ static struct platform_driver unittest_driver = {
 	.remove			= unittest_remove,
 	.driver = {
 		.name		= "unittest",
-		.owner		= THIS_MODULE,
 		.of_match_table	= of_match_ptr(unittest_match),
 	},
 };
@@ -1666,7 +1665,6 @@ static const struct i2c_device_id unittest_i2c_dev_id[] = {
 static struct i2c_driver unittest_i2c_dev_driver = {
 	.driver = {
 		.name = "unittest-i2c-dev",
-		.owner = THIS_MODULE,
 	},
 	.probe = unittest_i2c_dev_probe,
 	.remove = unittest_i2c_dev_remove,
@@ -1761,7 +1759,6 @@ static const struct i2c_device_id unittest_i2c_mux_id[] = {
 static struct i2c_driver unittest_i2c_mux_driver = {
 	.driver = {
 		.name = "unittest-i2c-mux",
-		.owner = THIS_MODULE,
 	},
 	.probe = unittest_i2c_mux_probe,
 	.remove = unittest_i2c_mux_remove,
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] of: Drop owner assignment from platform and i2c driver
@ 2015-07-28 15:55   ` Rob Herring
  0 siblings, 0 replies; 4+ messages in thread
From: Rob Herring @ 2015-07-28 15:55 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Grant Likely, Rob Herring,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE, open list

On Fri, Jul 10, 2015 at 1:26 AM, Krzysztof Kozlowski
<k.kozlowski@samsung.com> wrote:
> platform_driver and i2c_driver do not need to set an owner because core
> will set it.
>
> Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>

Applied. Thanks.

Rob

>
> ---
>
> The coccinelle script which generated the patch was sent here:
> http://www.spinics.net/lists/kernel/msg2029903.html
> ---
>  drivers/of/unittest.c | 3 ---
>  1 file changed, 3 deletions(-)
>
> diff --git a/drivers/of/unittest.c b/drivers/of/unittest.c
> index 18016341d5a9..9f71770b6226 100644
> --- a/drivers/of/unittest.c
> +++ b/drivers/of/unittest.c
> @@ -979,7 +979,6 @@ static struct platform_driver unittest_driver = {
>         .remove                 = unittest_remove,
>         .driver = {
>                 .name           = "unittest",
> -               .owner          = THIS_MODULE,
>                 .of_match_table = of_match_ptr(unittest_match),
>         },
>  };
> @@ -1666,7 +1665,6 @@ static const struct i2c_device_id unittest_i2c_dev_id[] = {
>  static struct i2c_driver unittest_i2c_dev_driver = {
>         .driver = {
>                 .name = "unittest-i2c-dev",
> -               .owner = THIS_MODULE,
>         },
>         .probe = unittest_i2c_dev_probe,
>         .remove = unittest_i2c_dev_remove,
> @@ -1761,7 +1759,6 @@ static const struct i2c_device_id unittest_i2c_mux_id[] = {
>  static struct i2c_driver unittest_i2c_mux_driver = {
>         .driver = {
>                 .name = "unittest-i2c-mux",
> -               .owner = THIS_MODULE,
>         },
>         .probe = unittest_i2c_mux_probe,
>         .remove = unittest_i2c_mux_remove,
> --
> 1.9.1
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] of: Drop owner assignment from platform and i2c driver
@ 2015-07-28 15:55   ` Rob Herring
  0 siblings, 0 replies; 4+ messages in thread
From: Rob Herring @ 2015-07-28 15:55 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Grant Likely, Rob Herring,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE, open list

On Fri, Jul 10, 2015 at 1:26 AM, Krzysztof Kozlowski
<k.kozlowski-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org> wrote:
> platform_driver and i2c_driver do not need to set an owner because core
> will set it.
>
> Signed-off-by: Krzysztof Kozlowski <k.kozlowski-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>

Applied. Thanks.

Rob

>
> ---
>
> The coccinelle script which generated the patch was sent here:
> http://www.spinics.net/lists/kernel/msg2029903.html
> ---
>  drivers/of/unittest.c | 3 ---
>  1 file changed, 3 deletions(-)
>
> diff --git a/drivers/of/unittest.c b/drivers/of/unittest.c
> index 18016341d5a9..9f71770b6226 100644
> --- a/drivers/of/unittest.c
> +++ b/drivers/of/unittest.c
> @@ -979,7 +979,6 @@ static struct platform_driver unittest_driver = {
>         .remove                 = unittest_remove,
>         .driver = {
>                 .name           = "unittest",
> -               .owner          = THIS_MODULE,
>                 .of_match_table = of_match_ptr(unittest_match),
>         },
>  };
> @@ -1666,7 +1665,6 @@ static const struct i2c_device_id unittest_i2c_dev_id[] = {
>  static struct i2c_driver unittest_i2c_dev_driver = {
>         .driver = {
>                 .name = "unittest-i2c-dev",
> -               .owner = THIS_MODULE,
>         },
>         .probe = unittest_i2c_dev_probe,
>         .remove = unittest_i2c_dev_remove,
> @@ -1761,7 +1759,6 @@ static const struct i2c_device_id unittest_i2c_mux_id[] = {
>  static struct i2c_driver unittest_i2c_mux_driver = {
>         .driver = {
>                 .name = "unittest-i2c-mux",
> -               .owner = THIS_MODULE,
>         },
>         .probe = unittest_i2c_mux_probe,
>         .remove = unittest_i2c_mux_remove,
> --
> 1.9.1
>
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-07-28 15:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-10  6:26 [PATCH] of: Drop owner assignment from platform and i2c driver Krzysztof Kozlowski
2015-07-10  6:26 ` Krzysztof Kozlowski
2015-07-28 15:55 ` Rob Herring
2015-07-28 15:55   ` Rob Herring

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.