Correct SPL uses of CMD_CLK
authorSimon Glass <sjg@chromium.org>
Sun, 5 Feb 2023 22:36:26 +0000 (15:36 -0700)
committerTom Rini <trini@konsulko.com>
Thu, 9 Feb 2023 21:32:25 +0000 (16:32 -0500)
This converts 7 usages of this option to the non-SPL form, since there is
no SPL_CMD_CLK defined in Kconfig

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Sean Anderson <seanga2@gmail.com>
drivers/clk/clk_k210.c
drivers/clk/imx/clk-imx8.c
drivers/clk/imx/clk-imx8.h
drivers/clk/imx/clk-imx8qm.c
drivers/clk/imx/clk-imx8qxp.c

index f7d3696..c534cc0 100644 (file)
@@ -308,7 +308,7 @@ enum k210_clk_flags {
  * @gate: An &enum k210_gate_id of this clock's gate
  */
 struct k210_clk_params {
-#if CONFIG_IS_ENABLED(CMD_CLK)
+#if IS_ENABLED(CONFIG_CMD_CLK)
        const char *name;
 #endif
        u8 flags;
@@ -326,7 +326,7 @@ struct k210_clk_params {
 };
 
 static const struct k210_clk_params k210_clks[] = {
-#if CONFIG_IS_ENABLED(CMD_CLK)
+#if IS_ENABLED(CONFIG_CMD_CLK)
 #define NAME(_name) .name = (_name),
 #else
 #define NAME(name)
@@ -1284,7 +1284,7 @@ U_BOOT_DRIVER(k210_clk) = {
        .priv_auto = sizeof(struct k210_clk_priv),
 };
 
-#if CONFIG_IS_ENABLED(CMD_CLK)
+#if IS_ENABLED(CONFIG_CMD_CLK)
 static char show_enabled(struct k210_clk_priv *priv, int id)
 {
        bool enabled;
index b3dc138..24bdab2 100644 (file)
@@ -42,7 +42,7 @@ static int imx8_clk_enable(struct clk *clk)
        return __imx8_clk_enable(clk, 1);
 }
 
-#if CONFIG_IS_ENABLED(CMD_CLK)
+#if IS_ENABLED(CONFIG_CMD_CLK)
 int soc_clk_dump(void)
 {
        struct udevice *dev;
index 68ad675..6e850ba 100644 (file)
@@ -9,7 +9,7 @@ struct imx8_clks {
        const char *name;
 };
 
-#if CONFIG_IS_ENABLED(CMD_CLK)
+#if IS_ENABLED(CONFIG_CMD_CLK)
 extern struct imx8_clks imx8_clk_names[];
 extern int num_clks;
 #endif
index 7759dc6..b874915 100644 (file)
@@ -16,7 +16,7 @@
 
 #include "clk-imx8.h"
 
-#if CONFIG_IS_ENABLED(CMD_CLK)
+#if IS_ENABLED(CONFIG_CMD_CLK)
 struct imx8_clks imx8_clk_names[] = {
        { IMX8QM_A53_DIV, "A53_DIV" },
        { IMX8QM_UART0_CLK, "UART0" },
index ffa2fce..d580b43 100644 (file)
@@ -16,7 +16,7 @@
 
 #include "clk-imx8.h"
 
-#if CONFIG_IS_ENABLED(CMD_CLK)
+#if IS_ENABLED(CONFIG_CMD_CLK)
 struct imx8_clks imx8_clk_names[] = {
        { IMX8QXP_A35_DIV, "A35_DIV" },
        { IMX8QXP_I2C0_CLK, "I2C0" },