board: apalis-imx8: get rid of sc_err_t type

sc_pm_setup_uart() returns int, not sc_err_t.

Signed-off-by: Philippe Schenker <philippe.schenker@toradex.com>
Signed-off-by: Francesco Dolcini <francesco.dolcini@toradex.com>
Reviewed-by: Fabio Estevam <festevam@denx.de>
This commit is contained in:
Philippe Schenker 2023-01-16 20:05:10 +01:00 committed by Stefano Babic
parent b3d41fb8ae
commit 63b6193f3f

View file

@ -169,12 +169,12 @@ void board_mem_get_layout(u64 *phys_sdram_1_start,
int board_early_init_f(void)
{
sc_pm_clock_rate_t rate = SC_80MHZ;
sc_err_t err = 0;
int ret;
/* Set UART1 clock root to 80 MHz and enable it */
err = sc_pm_setup_uart(SC_R_UART_1, rate);
if (err != SC_ERR_NONE)
return 0;
ret = sc_pm_setup_uart(SC_R_UART_1, rate);
if (ret)
return ret;
setup_iomux_uart();