From 3da30441f59bbf0a9ace1c57b88b9739f81f073e Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Sun, 1 May 2016 16:21:52 -0400 Subject: [PATCH] gpio: fix typo in function documentation Change-Id: I24cd9386f05e807c77faa61fea9a4ee4a0efec4f Signed-off-by: Anas Nashif --- include/gpio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/gpio.h b/include/gpio.h index 01a6cd74368..1d1205a22c4 100644 --- a/include/gpio.h +++ b/include/gpio.h @@ -252,7 +252,7 @@ static inline int gpio_pin_write(struct device *port, uint32_t pin, * @brief Read the data value of a single pin. * @param port Pointer to the device structure for the driver instance. * @param pin Pin number where data is read. - * @param value Integer pointer to receive the data vales from the pin. + * @param value Integer pointer to receive the data values from the pin. */ static inline int gpio_pin_read(struct device *port, uint32_t pin, uint32_t *value)