public inbox for linux-arm-kernel@lists.infradead.org
 help / color / mirror / Atom feed
* [PATCH] coresight: funnel: Remove unnecessary .owner of static funnel driver
@ 2020-10-31 10:12 Qi Liu
  2020-11-02 17:23 ` Mathieu Poirier
  0 siblings, 1 reply; 3+ messages in thread
From: Qi Liu @ 2020-10-31 10:12 UTC (permalink / raw)
  To: mathieu.poirier, suzuki.poulose, Al.Grant, mike.leach
  Cc: linux-kernel, linux-arm-kernel, linuxarm

As driver.owner has been set in platform_driver_register(), it is
unnecessary to set it in static funnel driver, so remove it from
struct static_funnel_driver.

Signed-off-by: Qi Liu <liuqi115@huawei.com>
---
 drivers/hwtracing/coresight/coresight-funnel.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/hwtracing/coresight/coresight-funnel.c b/drivers/hwtracing/coresight/coresight-funnel.c
index af40814..07bc203 100644
--- a/drivers/hwtracing/coresight/coresight-funnel.c
+++ b/drivers/hwtracing/coresight/coresight-funnel.c
@@ -356,7 +356,6 @@ static struct platform_driver static_funnel_driver = {
 	.remove          = static_funnel_remove,
 	.driver         = {
 		.name   = "coresight-static-funnel",
-		.owner	= THIS_MODULE,
 		.of_match_table = static_funnel_match,
 		.acpi_match_table = ACPI_PTR(static_funnel_ids),
 		.pm	= &funnel_dev_pm_ops,
--
2.8.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] coresight: funnel: Remove unnecessary .owner of static funnel driver
  2020-10-31 10:12 [PATCH] coresight: funnel: Remove unnecessary .owner of static funnel driver Qi Liu
@ 2020-11-02 17:23 ` Mathieu Poirier
  2020-11-03  1:18   ` Qi Liu
  0 siblings, 1 reply; 3+ messages in thread
From: Mathieu Poirier @ 2020-11-02 17:23 UTC (permalink / raw)
  To: Qi Liu
  Cc: Al.Grant, suzuki.poulose, linuxarm, linux-kernel,
	linux-arm-kernel, mike.leach

Hi Liu,

On Sat, Oct 31, 2020 at 06:12:30PM +0800, Qi Liu wrote:
> As driver.owner has been set in platform_driver_register(), it is
> unnecessary to set it in static funnel driver, so remove it from
> struct static_funnel_driver.
> 
> Signed-off-by: Qi Liu <liuqi115@huawei.com>
> ---
>  drivers/hwtracing/coresight/coresight-funnel.c | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/drivers/hwtracing/coresight/coresight-funnel.c b/drivers/hwtracing/coresight/coresight-funnel.c
> index af40814..07bc203 100644
> --- a/drivers/hwtracing/coresight/coresight-funnel.c
> +++ b/drivers/hwtracing/coresight/coresight-funnel.c
> @@ -356,7 +356,6 @@ static struct platform_driver static_funnel_driver = {
>  	.remove          = static_funnel_remove,
>  	.driver         = {
>  		.name   = "coresight-static-funnel",
> -		.owner	= THIS_MODULE,

I received two identical patches (with a different title) from you.  Since there
was no explanation I will discard the first one and work with this one.

You are correct, platform_driver_register() does take care of THIS_MODULE.
Please send another revision where you will do three things:

1) CC the coresight mailing list, as instructed by get_maintainer.pl
1) Also fix the replicator driver.
2) Add a comment that clearly mentions THIS_MODULE doesn't need to be set:

                .name   = "coresight-static-funnel",
                /* THIS_MODULE is taken care of by platform_driver_register() */
                .of_match_table = static_funnel_match,
                .acpi_match_table = ACPI_PTR(static_funnel_ids),
                .pm	= &funnel_dev_pm_ops,

Thanks,
Mathieu

> --
> 2.8.1
> 

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] coresight: funnel: Remove unnecessary .owner of static funnel driver
  2020-11-02 17:23 ` Mathieu Poirier
@ 2020-11-03  1:18   ` Qi Liu
  0 siblings, 0 replies; 3+ messages in thread
From: Qi Liu @ 2020-11-03  1:18 UTC (permalink / raw)
  To: Mathieu Poirier
  Cc: Al.Grant, suzuki.poulose, linuxarm, linux-kernel,
	linux-arm-kernel, mike.leach

Hi Mathieu,


On 2020/11/3 1:23, Mathieu Poirier wrote:
> Hi Liu,
>
> On Sat, Oct 31, 2020 at 06:12:30PM +0800, Qi Liu wrote:
>> As driver.owner has been set in platform_driver_register(), it is
>> unnecessary to set it in static funnel driver, so remove it from
>> struct static_funnel_driver.
>>
>> Signed-off-by: Qi Liu <liuqi115@huawei.com>
>> ---
>>  drivers/hwtracing/coresight/coresight-funnel.c | 1 -
>>  1 file changed, 1 deletion(-)
>>
>> diff --git a/drivers/hwtracing/coresight/coresight-funnel.c b/drivers/hwtracing/coresight/coresight-funnel.c
>> index af40814..07bc203 100644
>> --- a/drivers/hwtracing/coresight/coresight-funnel.c
>> +++ b/drivers/hwtracing/coresight/coresight-funnel.c
>> @@ -356,7 +356,6 @@ static struct platform_driver static_funnel_driver = {
>>  	.remove          = static_funnel_remove,
>>  	.driver         = {
>>  		.name   = "coresight-static-funnel",
>> -		.owner	= THIS_MODULE,
> I received two identical patches (with a different title) from you.  Since there
> was no explanation I will discard the first one and work with this one.
>
> You are correct, platform_driver_register() does take care of THIS_MODULE.
> Please send another revision where you will do three things:
>
> 1) CC the coresight mailing list, as instructed by get_maintainer.pl
> 1) Also fix the replicator driver.
> 2) Add a comment that clearly mentions THIS_MODULE doesn't need to be set:
>
>                 .name   = "coresight-static-funnel",
>                 /* THIS_MODULE is taken care of by platform_driver_register() */
>                 .of_match_table = static_funnel_match,
>                 .acpi_match_table = ACPI_PTR(static_funnel_ids),
>                 .pm	= &funnel_dev_pm_ops,
>
> Thanks,
> Mathieu
Thanks for your review , I'll send a new patch latter.

Liu
>> --
>> 2.8.1
>>
> .
>



_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2020-11-03  1:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-10-31 10:12 [PATCH] coresight: funnel: Remove unnecessary .owner of static funnel driver Qi Liu
2020-11-02 17:23 ` Mathieu Poirier
2020-11-03  1:18   ` Qi Liu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox