diff options
| author | Johan Hovold <johan@kernel.org> | 2025-11-27 14:53:25 +0100 |
|---|---|---|
| committer | Stephen Boyd <sboyd@kernel.org> | 2025-11-30 12:06:21 -0800 |
| commit | b276445e98fe28609688fb85b89a81b803910e63 (patch) | |
| tree | ae3c1c99fcde7aab8f7847cf9f4e5a3204712aac | |
| parent | 9c75986a298f121ed2c6599b05e51d9a34e77068 (diff) | |
clk: keystone: fix compile testing
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>
| -rw-r--r-- | drivers/clk/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/clk/Makefile b/drivers/clk/Makefile index b74a1767ca27..61ec08404442 100644 --- a/drivers/clk/Makefile +++ b/drivers/clk/Makefile @@ -125,8 +125,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/ |
