summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/src/sam34/sam_gpioirq.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/arch/arm/src/sam34/sam_gpioirq.c')
-rw-r--r--nuttx/arch/arm/src/sam34/sam_gpioirq.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/nuttx/arch/arm/src/sam34/sam_gpioirq.c b/nuttx/arch/arm/src/sam34/sam_gpioirq.c
index b7c7ead27..11ea34aa6 100644
--- a/nuttx/arch/arm/src/sam34/sam_gpioirq.c
+++ b/nuttx/arch/arm/src/sam34/sam_gpioirq.c
@@ -280,7 +280,7 @@ void sam_gpioirq(uint16_t pinset)
/* Are any additional interrupt modes selected? */
- if ((pinset & GPIO_INT_MASK) != 0)
+ if ((pinset & _GIO_INT_AIM) != 0)
{
/* Yes.. Enable additional interrupt mode */
@@ -288,7 +288,7 @@ void sam_gpioirq(uint16_t pinset)
/* Level or edge detected interrupt? */
- if ((pinset & GPIO_INT_LEVEL) != 0)
+ if ((pinset & _GPIO_INT_LEVEL) != 0)
{
putreg32(pin, base + SAM_PIO_LSR_OFFSET); /* Level */
}
@@ -299,7 +299,7 @@ void sam_gpioirq(uint16_t pinset)
/* High level/rising edge or low level /falling edge? */
- if ((pinset & GPIO_INT_HIGHLEVEL) != 0)
+ if ((pinset & _GPIO_INT_RH) != 0)
{
putreg32(pin, base + SAM_PIO_REHLSR_OFFSET); /* High level/Rising edge */
}