linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] clk: mediatek: drop two dead config options
@ 2024-09-27  9:22 Lukas Bulwahn
  2024-10-01  7:54 ` AngeloGioacchino Del Regno
  2024-10-09 23:23 ` Stephen Boyd
  0 siblings, 2 replies; 3+ messages in thread
From: Lukas Bulwahn @ 2024-09-27  9:22 UTC (permalink / raw)
  To: Michael Turquette, Stephen Boyd, Matthias Brugger,
	AngeloGioacchino Del Regno, Chen-Yu Tsai, linux-clk,
	linux-arm-kernel, linux-mediatek
  Cc: kernel-janitors, linux-kernel, Lukas Bulwahn

From: Lukas Bulwahn <lukas.bulwahn@redhat.com>

Commit 0f471d31e5e8 ("clk: mediatek: Split MT8195 clock drivers and allow
module build") adds a number of new COMMON_CLK_MT8195_* config options.
Among those, the config options COMMON_CLK_MT8195_AUDSYS and
COMMON_CLK_MT8195_MSDC have no reference in the source tree and are not
used in the Makefile to include a specific file.

Drop the dead config options COMMON_CLK_MT8195_AUDSYS and
COMMON_CLK_MT8195_MSDC.

Fixes: 0f471d31e5e8 ("clk: mediatek: Split MT8195 clock drivers and allow module build")
Signed-off-by: Lukas Bulwahn <lukas.bulwahn@redhat.com>
---
 drivers/clk/mediatek/Kconfig | 15 ---------------
 1 file changed, 15 deletions(-)

diff --git a/drivers/clk/mediatek/Kconfig b/drivers/clk/mediatek/Kconfig
index 70a005e7e1b1..486401e1f2f1 100644
--- a/drivers/clk/mediatek/Kconfig
+++ b/drivers/clk/mediatek/Kconfig
@@ -887,13 +887,6 @@ config COMMON_CLK_MT8195_APUSYS
 	help
 	  This driver supports MediaTek MT8195 AI Processor Unit System clocks.
 
-config COMMON_CLK_MT8195_AUDSYS
-	tristate "Clock driver for MediaTek MT8195 audsys"
-	depends on COMMON_CLK_MT8195
-	default COMMON_CLK_MT8195
-	help
-	  This driver supports MediaTek MT8195 audsys clocks.
-
 config COMMON_CLK_MT8195_IMP_IIC_WRAP
 	tristate "Clock driver for MediaTek MT8195 imp_iic_wrap"
 	depends on COMMON_CLK_MT8195
@@ -908,14 +901,6 @@ config COMMON_CLK_MT8195_MFGCFG
 	help
 	  This driver supports MediaTek MT8195 mfgcfg clocks.
 
-config COMMON_CLK_MT8195_MSDC
-	tristate "Clock driver for MediaTek MT8195 msdc"
-	depends on COMMON_CLK_MT8195
-	default COMMON_CLK_MT8195
-	help
-	  This driver supports MediaTek MT8195 MMC and SD Controller's
-	  msdc and msdc_top clocks.
-
 config COMMON_CLK_MT8195_SCP_ADSP
 	tristate "Clock driver for MediaTek MT8195 scp_adsp"
 	depends on COMMON_CLK_MT8195
-- 
2.46.1



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

* Re: [PATCH] clk: mediatek: drop two dead config options
  2024-09-27  9:22 [PATCH] clk: mediatek: drop two dead config options Lukas Bulwahn
@ 2024-10-01  7:54 ` AngeloGioacchino Del Regno
  2024-10-09 23:23 ` Stephen Boyd
  1 sibling, 0 replies; 3+ messages in thread
From: AngeloGioacchino Del Regno @ 2024-10-01  7:54 UTC (permalink / raw)
  To: Lukas Bulwahn, Michael Turquette, Stephen Boyd, Matthias Brugger,
	Chen-Yu Tsai, linux-clk, linux-arm-kernel, linux-mediatek
  Cc: kernel-janitors, linux-kernel, Lukas Bulwahn

Il 27/09/24 11:22, Lukas Bulwahn ha scritto:
> From: Lukas Bulwahn <lukas.bulwahn@redhat.com>
> 
> Commit 0f471d31e5e8 ("clk: mediatek: Split MT8195 clock drivers and allow
> module build") adds a number of new COMMON_CLK_MT8195_* config options.
> Among those, the config options COMMON_CLK_MT8195_AUDSYS and
> COMMON_CLK_MT8195_MSDC have no reference in the source tree and are not
> used in the Makefile to include a specific file.
> 
> Drop the dead config options COMMON_CLK_MT8195_AUDSYS and
> COMMON_CLK_MT8195_MSDC.
> 
> Fixes: 0f471d31e5e8 ("clk: mediatek: Split MT8195 clock drivers and allow module build")
> Signed-off-by: Lukas Bulwahn <lukas.bulwahn@redhat.com>

Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>




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

* Re: [PATCH] clk: mediatek: drop two dead config options
  2024-09-27  9:22 [PATCH] clk: mediatek: drop two dead config options Lukas Bulwahn
  2024-10-01  7:54 ` AngeloGioacchino Del Regno
@ 2024-10-09 23:23 ` Stephen Boyd
  1 sibling, 0 replies; 3+ messages in thread
From: Stephen Boyd @ 2024-10-09 23:23 UTC (permalink / raw)
  To: AngeloGioacchino Del Regno, Chen-Yu Tsai, Lukas Bulwahn,
	Matthias Brugger, Michael Turquette, linux-arm-kernel, linux-clk,
	linux-mediatek
  Cc: kernel-janitors, linux-kernel, Lukas Bulwahn

Quoting Lukas Bulwahn (2024-09-27 02:22:32)
> From: Lukas Bulwahn <lukas.bulwahn@redhat.com>
> 
> Commit 0f471d31e5e8 ("clk: mediatek: Split MT8195 clock drivers and allow
> module build") adds a number of new COMMON_CLK_MT8195_* config options.
> Among those, the config options COMMON_CLK_MT8195_AUDSYS and
> COMMON_CLK_MT8195_MSDC have no reference in the source tree and are not
> used in the Makefile to include a specific file.
> 
> Drop the dead config options COMMON_CLK_MT8195_AUDSYS and
> COMMON_CLK_MT8195_MSDC.
> 
> Fixes: 0f471d31e5e8 ("clk: mediatek: Split MT8195 clock drivers and allow module build")
> Signed-off-by: Lukas Bulwahn <lukas.bulwahn@redhat.com>
> ---

Applied to clk-next


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

end of thread, other threads:[~2024-10-09 23:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-27  9:22 [PATCH] clk: mediatek: drop two dead config options Lukas Bulwahn
2024-10-01  7:54 ` AngeloGioacchino Del Regno
2024-10-09 23:23 ` Stephen Boyd

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).