Correct SPL use of DEBUG_UART_ZYNQ

This converts 1 usage of this option to the non-SPL form, since there is
no SPL_DEBUG_UART_ZYNQ defined in Kconfig

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass 2023-02-05 15:39:32 -07:00 committed by Tom Rini
parent 7c31107249
commit 43512276da

View file

@ -108,7 +108,7 @@ static void _uart_zynq_serial_init(struct uart_zynq *regs)
static int _uart_zynq_serial_putc(struct uart_zynq *regs, const char c)
{
if (CONFIG_IS_ENABLED(DEBUG_UART_ZYNQ)) {
if (IS_ENABLED(CONFIG_DEBUG_UART_ZYNQ)) {
if (!(readl(&regs->channel_sts) & ZYNQ_UART_SR_TXEMPTY))
return -EAGAIN;
} else {