You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by bt...@apache.org on 2021/01/17 05:04:54 UTC

[incubator-nuttx] 02/07: nrf52: fix SPI3 irq macro naming

This is an automated email from the ASF dual-hosted git repository.

btashton pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git

commit 5d4463121fcdc49d766a9b0740594e16d54b74ef
Author: Matias N <ma...@protobits.dev>
AuthorDate: Sat Jan 16 19:24:54 2021 -0300

    nrf52: fix SPI3 irq macro naming
---
 arch/arm/include/nrf52/nrf52_irq.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/include/nrf52/nrf52_irq.h b/arch/arm/include/nrf52/nrf52_irq.h
index c99b761..3fbf7dd 100644
--- a/arch/arm/include/nrf52/nrf52_irq.h
+++ b/arch/arm/include/nrf52/nrf52_irq.h
@@ -99,7 +99,7 @@
 #  define NRF52_IRQ_PWM3        (NRF52_IRQ_EXTINT+45)  /* Pulse Width Modulation Unit 3 */
 #endif
 #ifdef CONFIG_NRF52_HAVE_SPI3_MASTER
-#  define NRF52_IRQ_SPIM3       (NRF52_IRQ_EXTINT+47)  /* SPI Master 3 */
+#  define NRF52_IRQ_SPI3        (NRF52_IRQ_EXTINT+47)  /* SPI Master 3 */
 #endif
 
 #if defined(CONFIG_ARCH_CHIP_NRF52832)