]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
powerpc: use CONFIG_IS_ENABLED() when checking for DM_SERIAL in include/asm/config.h
authorMarek Mojík <marek.mojik@nic.cz>
Thu, 6 Jun 2024 16:33:25 +0000 (18:33 +0200)
committerTom Rini <trini@konsulko.com>
Fri, 12 Jul 2024 19:07:43 +0000 (13:07 -0600)
Use the CONFIG_IS_ENABLED() macro when checking for DM_SERIAL so that
CFG_SYS_NS16550_CLK is not defined as get_serial_clock() in SPL if SPL
does not have DM_SERIAL enabled.

Signed-off-by: Marek Mojík <marek.mojik@nic.cz>
Reviewed-by: Marek Behún <kabel@kernel.org>
arch/powerpc/include/asm/config.h

index f0702cab14316d37f2838180e7d97fc3d910e43d..f61f4e1ea6efba2926bb856daf31e18bd52fec64 100644 (file)
@@ -39,7 +39,7 @@
 
 /* The FMAN driver uses the PHYLIB infrastructure */
 
-#if defined(CONFIG_DM_SERIAL) && !defined(CONFIG_CLK_MPC83XX)
+#if CONFIG_IS_ENABLED(DM_SERIAL) && !defined(CONFIG_CLK_MPC83XX)
 /*
  * TODO: Convert this to a clock driver exists that can give us the UART
  * clock here.