This is an automated email from the ASF dual-hosted git repository.
pkarashchenko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
The following commit(s) were added to refs/heads/master by this push:
new 4ee917c14c stm32f7:Serial Fix breakage from #6779
4ee917c14c is described below
commit 4ee917c14c8216e1634d7d73114c909a8dcb40d4
Author: David Sidrane <[email protected]>
AuthorDate: Tue Aug 9 07:15:44 2022 -0700
stm32f7:Serial Fix breakage from #6779
---
arch/arm/src/stm32f7/stm32_serial.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/arm/src/stm32f7/stm32_serial.c
b/arch/arm/src/stm32f7/stm32_serial.c
index b4e56df962..e05e2fefa6 100644
--- a/arch/arm/src/stm32f7/stm32_serial.c
+++ b/arch/arm/src/stm32f7/stm32_serial.c
@@ -3639,10 +3639,10 @@ void arm_serialinit(void)
#if !defined(SERIAL_HAVE_ONLY_DMA)
# if defined(SERIAL_HAVE_RXDMA)
- UNUSED(&g_uart_rxdma_ops);
+ UNUSED(g_uart_rxdma_ops);
# endif
# if defined(SERIAL_HAVE_TXDMA)
- UNUSED(&g_uart_txdma_ops);
+ UNUSED(g_uart_txdma_ops);
# endif
#endif