Commit 713b7ef8 authored by Wolfram Sang's avatar Wolfram Sang Committed by Linus Walleij

gpio: devres: make comments proper

The free-function mentioned "interrupt" instead of "GPIO". While we are
here, use "GPIO" (capital letters) consistently.
Signed-off-by: default avatarWolfram Sang <wsa@the-dreams.de>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 78c7d8d2
...@@ -34,10 +34,10 @@ static int devm_gpio_match(struct device *dev, void *res, void *data) ...@@ -34,10 +34,10 @@ static int devm_gpio_match(struct device *dev, void *res, void *data)
} }
/** /**
* devm_gpio_request - request a gpio for a managed device * devm_gpio_request - request a GPIO for a managed device
* @dev: device to request the gpio for * @dev: device to request the GPIO for
* @gpio: gpio to allocate * @gpio: GPIO to allocate
* @label: the name of the requested gpio * @label: the name of the requested GPIO
* *
* Except for the extra @dev argument, this function takes the * Except for the extra @dev argument, this function takes the
* same arguments and performs the same function as * same arguments and performs the same function as
...@@ -101,9 +101,9 @@ int devm_gpio_request_one(struct device *dev, unsigned gpio, ...@@ -101,9 +101,9 @@ int devm_gpio_request_one(struct device *dev, unsigned gpio,
EXPORT_SYMBOL(devm_gpio_request_one); EXPORT_SYMBOL(devm_gpio_request_one);
/** /**
* devm_gpio_free - free an interrupt * devm_gpio_free - free a GPIO
* @dev: device to free gpio for * @dev: device to free GPIO for
* @gpio: gpio to free * @gpio: GPIO to free
* *
* Except for the extra @dev argument, this function takes the * Except for the extra @dev argument, this function takes the
* same arguments and performs the same function as gpio_free(). * same arguments and performs the same function as gpio_free().
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment