mirror of
https://github.com/apache/nuttx.git
synced 2025-01-12 22:08:35 +08:00
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:
parent
96fa400c3d
commit
4627a087f0
3 changed files with 7 additions and 5 deletions
|
@ -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 */
|
||||
|
|
|
@ -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 */
|
||||
};
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue