You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by pk...@apache.org on 2022/08/09 17:18:28 UTC

[incubator-nuttx] branch master updated: stm32f7:Serial Fix breakage from #6779

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 <Da...@NscDg.com>
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