summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/src/lm/lm_gpio.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/arch/arm/src/lm/lm_gpio.c')
-rw-r--r--nuttx/arch/arm/src/lm/lm_gpio.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/nuttx/arch/arm/src/lm/lm_gpio.c b/nuttx/arch/arm/src/lm/lm_gpio.c
index be851e67c..5b49f5a6c 100644
--- a/nuttx/arch/arm/src/lm/lm_gpio.c
+++ b/nuttx/arch/arm/src/lm/lm_gpio.c
@@ -715,7 +715,7 @@ int lm_configgpio(uint32_t cfgset)
func = (cfgset & GPIO_FUNC_MASK) >> GPIO_FUNC_SHIFT;
port = (cfgset & GPIO_PORT_MASK) >> GPIO_PORT_SHIFT;
- pinno = (cfgset & GPIO_NUMBER_MASK);
+ pinno = (cfgset & GPIO_PIN_MASK);
pin = (1 <<pinno);
DEBUGASSERT(func <= GPIO_FUNC_MAX);
@@ -792,7 +792,7 @@ void lm_gpiowrite(uint32_t pinset, bool value)
/* Decode the basics */
port = (pinset & GPIO_PORT_MASK) >> GPIO_PORT_SHIFT;
- pinno = (pinset & GPIO_NUMBER_MASK);
+ pinno = (pinset & GPIO_PIN_MASK);
/* Get the base address associated with the GPIO port */
@@ -830,7 +830,7 @@ bool lm_gpioread(uint32_t pinset, bool value)
/* Decode the basics */
port = (pinset & GPIO_PORT_MASK) >> GPIO_PORT_SHIFT;
- pinno = (pinset & GPIO_NUMBER_MASK);
+ pinno = (pinset & GPIO_PIN_MASK);
/* Get the base address associated with the GPIO port */