| From c3c21b64495ca461d79b2cb96d8df2d858d4ce5b Mon Sep 17 00:00:00 2001 |
| From: Sasha Levin <sashal@kernel.org> |
| Date: Thu, 27 Nov 2025 14:53:25 +0100 |
| Subject: clk: keystone: fix compile testing |
| |
| From: Johan Hovold <johan@kernel.org> |
| |
| [ Upstream commit b276445e98fe28609688fb85b89a81b803910e63 ] |
| |
| Some keystone clock drivers can be selected when COMPILE_TEST is |
| enabled but since commit b745c0794e2f ("clk: keystone: Add sci-clk |
| driver support") they are never actually built. |
| |
| Enable compile testing by allowing the build system to process the |
| keystone drivers. |
| |
| Fixes: b745c0794e2f ("clk: keystone: Add sci-clk driver support") |
| Signed-off-by: Johan Hovold <johan@kernel.org> |
| Signed-off-by: Stephen Boyd <sboyd@kernel.org> |
| Signed-off-by: Sasha Levin <sashal@kernel.org> |
| --- |
| drivers/clk/Makefile | 3 +-- |
| 1 file changed, 1 insertion(+), 2 deletions(-) |
| |
| diff --git a/drivers/clk/Makefile b/drivers/clk/Makefile |
| index 18969cbd4bb1e..8d572021977fd 100644 |
| --- a/drivers/clk/Makefile |
| +++ b/drivers/clk/Makefile |
| @@ -95,8 +95,7 @@ obj-$(CONFIG_ARCH_HISI) += hisilicon/ |
| obj-y += imgtec/ |
| obj-y += imx/ |
| obj-y += ingenic/ |
| -obj-$(CONFIG_ARCH_K3) += keystone/ |
| -obj-$(CONFIG_ARCH_KEYSTONE) += keystone/ |
| +obj-y += keystone/ |
| obj-y += mediatek/ |
| obj-$(CONFIG_ARCH_MESON) += meson/ |
| obj-y += microchip/ |
| -- |
| 2.51.0 |
| |