fix compile error

chip/efm32_leserial.c: In function 'efm32_restoreuartint':
Error: chip/efm32_leserial.c:329:37: error: 'len' undeclared (first use in this function); did you mean 'ien'?
  329 |   efm32_restoreuartint_nolock(priv, len);
      |                                     ^~~
      |                                     ien

Signed-off-by: hujun5 <hujun5@xiaomi.com>
This commit is contained in:
hujun5 2024-12-27 09:06:06 +08:00 committed by Xiang Xiao
parent 96fa400c3d
commit 4627a087f0
3 changed files with 7 additions and 5 deletions

View file

@ -158,6 +158,7 @@ struct up_dev_s
const uint8_t stop_2bits; /* True: Configure with 2 stop bits instead of 1 */
const uint32_t tx_gpio; /* USART TX GPIO pin configuration */
const uint32_t rx_gpio; /* USART RX GPIO pin configuration */
spinlock_t lock; /* Spinlock */
# ifdef CONFIG_SERIAL_IFLOWCONTROL
const uint32_t rts_gpio; /* UART RTS GPIO pin configuration */

View file

@ -145,6 +145,7 @@ struct imxrt_edma_s
/* This array describes each DMA channel */
struct imxrt_dmach_s dmach[IMXRT_EDMA_NCHANNELS];
spinlock_t lock; /* Spinlock */
};
/****************************************************************************

View file

@ -501,7 +501,7 @@ static struct stm32_serial_s g_lpuart1priv =
.rs485_dir_polarity = true,
# endif
# endif
.lock = = SP_UNLOCKED,
.lock = SP_UNLOCKED,
};
#endif
@ -623,7 +623,7 @@ static struct stm32_serial_s g_usart2priv =
.rs485_dir_polarity = true,
# endif
# endif
.lock = = SP_UNLOCKED,
.lock = SP_UNLOCKED,
};
#endif
@ -685,7 +685,7 @@ static struct stm32_serial_s g_usart3priv =
.rs485_dir_polarity = true,
# endif
# endif
.lock = = SP_UNLOCKED,
.lock = SP_UNLOCKED,
};
#endif
@ -747,7 +747,7 @@ static struct stm32_serial_s g_uart4priv =
.rs485_dir_polarity = true,
# endif
# endif
.lock = = SP_UNLOCKED,
.lock = SP_UNLOCKED,
};
#endif
@ -809,7 +809,7 @@ static struct stm32_serial_s g_uart5priv =
.rs485_dir_polarity = true,
# endif
# endif
.lock = = SP_UNLOCKED,
.lock = SP_UNLOCKED,
};
#endif