* [PATCH] pmdomain: mediatek: scpsys: drop driver owner assignment
@ 2024-03-30 21:10 Krzysztof Kozlowski
2024-03-30 21:10 ` Krzysztof Kozlowski
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2024-03-30 21:10 UTC (permalink / raw)
To: Ulf Hansson, Matthias Brugger, AngeloGioacchino Del Regno,
linux-pm, linux-kernel, linux-arm-kernel, linux-mediatek
Cc: Krzysztof Kozlowski
Core in platform_driver_register() already sets the .owner, so driver
does not need to.
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
drivers/pmdomain/mediatek/mtk-scpsys.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/pmdomain/mediatek/mtk-scpsys.c b/drivers/pmdomain/mediatek/mtk-scpsys.c
index 59a7a8c261ed..1a80c1537a43 100644
--- a/drivers/pmdomain/mediatek/mtk-scpsys.c
+++ b/drivers/pmdomain/mediatek/mtk-scpsys.c
@@ -1138,7 +1138,6 @@ static struct platform_driver scpsys_drv = {
.driver = {
.name = "mtk-scpsys",
.suppress_bind_attrs = true,
- .owner = THIS_MODULE,
.of_match_table = of_scpsys_match_tbl,
},
};
--
2.34.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] 4+ messages in thread* [PATCH] pmdomain: mediatek: scpsys: drop driver owner assignment
2024-03-30 21:10 [PATCH] pmdomain: mediatek: scpsys: drop driver owner assignment Krzysztof Kozlowski
@ 2024-03-30 21:10 ` Krzysztof Kozlowski
2024-04-02 10:07 ` AngeloGioacchino Del Regno
2024-04-04 10:46 ` Ulf Hansson
2 siblings, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2024-03-30 21:10 UTC (permalink / raw)
To: Ulf Hansson, Matthias Brugger, AngeloGioacchino Del Regno,
linux-pm, linux-kernel, linux-arm-kernel, linux-mediatek
Cc: Krzysztof Kozlowski
Core in platform_driver_register() already sets the .owner, so driver
does not need to.
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
drivers/pmdomain/mediatek/mtk-scpsys.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/pmdomain/mediatek/mtk-scpsys.c b/drivers/pmdomain/mediatek/mtk-scpsys.c
index 59a7a8c261ed..1a80c1537a43 100644
--- a/drivers/pmdomain/mediatek/mtk-scpsys.c
+++ b/drivers/pmdomain/mediatek/mtk-scpsys.c
@@ -1138,7 +1138,6 @@ static struct platform_driver scpsys_drv = {
.driver = {
.name = "mtk-scpsys",
.suppress_bind_attrs = true,
- .owner = THIS_MODULE,
.of_match_table = of_scpsys_match_tbl,
},
};
--
2.34.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] 4+ messages in thread* Re: [PATCH] pmdomain: mediatek: scpsys: drop driver owner assignment
2024-03-30 21:10 [PATCH] pmdomain: mediatek: scpsys: drop driver owner assignment Krzysztof Kozlowski
2024-03-30 21:10 ` Krzysztof Kozlowski
@ 2024-04-02 10:07 ` AngeloGioacchino Del Regno
2024-04-04 10:46 ` Ulf Hansson
2 siblings, 0 replies; 4+ messages in thread
From: AngeloGioacchino Del Regno @ 2024-04-02 10:07 UTC (permalink / raw)
To: Krzysztof Kozlowski, Ulf Hansson, Matthias Brugger, linux-pm,
linux-kernel, linux-arm-kernel, linux-mediatek
Il 30/03/24 22:10, Krzysztof Kozlowski ha scritto:
> Core in platform_driver_register() already sets the .owner, so driver
> does not need to.
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
_______________________________________________
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] 4+ messages in thread
* Re: [PATCH] pmdomain: mediatek: scpsys: drop driver owner assignment
2024-03-30 21:10 [PATCH] pmdomain: mediatek: scpsys: drop driver owner assignment Krzysztof Kozlowski
2024-03-30 21:10 ` Krzysztof Kozlowski
2024-04-02 10:07 ` AngeloGioacchino Del Regno
@ 2024-04-04 10:46 ` Ulf Hansson
2 siblings, 0 replies; 4+ messages in thread
From: Ulf Hansson @ 2024-04-04 10:46 UTC (permalink / raw)
To: Krzysztof Kozlowski
Cc: Matthias Brugger, AngeloGioacchino Del Regno, linux-pm,
linux-kernel, linux-arm-kernel, linux-mediatek
On Sat, 30 Mar 2024 at 22:10, Krzysztof Kozlowski
<krzysztof.kozlowski@linaro.org> wrote:
>
> Core in platform_driver_register() already sets the .owner, so driver
> does not need to.
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Applied for next, thanks!
Kind regards
Uffe
> ---
> drivers/pmdomain/mediatek/mtk-scpsys.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/drivers/pmdomain/mediatek/mtk-scpsys.c b/drivers/pmdomain/mediatek/mtk-scpsys.c
> index 59a7a8c261ed..1a80c1537a43 100644
> --- a/drivers/pmdomain/mediatek/mtk-scpsys.c
> +++ b/drivers/pmdomain/mediatek/mtk-scpsys.c
> @@ -1138,7 +1138,6 @@ static struct platform_driver scpsys_drv = {
> .driver = {
> .name = "mtk-scpsys",
> .suppress_bind_attrs = true,
> - .owner = THIS_MODULE,
> .of_match_table = of_scpsys_match_tbl,
> },
> };
> --
> 2.34.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] 4+ messages in thread
end of thread, other threads:[~2024-04-04 10:47 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-30 21:10 [PATCH] pmdomain: mediatek: scpsys: drop driver owner assignment Krzysztof Kozlowski
2024-03-30 21:10 ` Krzysztof Kozlowski
2024-04-02 10:07 ` AngeloGioacchino Del Regno
2024-04-04 10:46 ` Ulf Hansson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox