coresight: Remove unnecessary THIS_MODULE of funnel and replicator driver
authorQi Liu <liuqi115@huawei.com>
Fri, 27 Nov 2020 17:52:49 +0000 (10:52 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 27 Nov 2020 19:23:12 +0000 (20:23 +0100)
As THIS_MODULE has been set in platform_driver_register(), so remove it
from static funnel driver and static replicator driver to avoid set it
twice.

Signed-off-by: Qi Liu <liuqi115@huawei.com>
Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
Link: https://lore.kernel.org/r/20201127175256.1092685-9-mathieu.poirier@linaro.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/hwtracing/coresight/coresight-funnel.c
drivers/hwtracing/coresight/coresight-replicator.c

index af40814..39be46b 100644 (file)
@@ -356,7 +356,7 @@ static struct platform_driver static_funnel_driver = {
        .remove          = static_funnel_remove,
        .driver         = {
                .name   = "coresight-static-funnel",
-               .owner  = THIS_MODULE,
+               /* 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,
index 62afdde..6772f23 100644 (file)
@@ -374,7 +374,7 @@ static struct platform_driver static_replicator_driver = {
        .remove         = static_replicator_remove,
        .driver         = {
                .name   = "coresight-static-replicator",
-               .owner  = THIS_MODULE,
+               /* THIS_MODULE is taken care of by platform_driver_register() */
                .of_match_table = of_match_ptr(static_replicator_match),
                .acpi_match_table = ACPI_PTR(static_replicator_acpi_ids),
                .pm     = &replicator_dev_pm_ops,