diff options
| author | Lars-Peter Clausen <lars@metafoo.de> | 2011-05-25 16:20:31 -0700 | 
|---|---|---|
| committer | Grant Likely <grant.likely@secretlab.ca> | 2011-05-27 17:56:45 -0600 | 
| commit | 7c295975a85b049385dfe0d5ee0d4d543619fbdc (patch) | |
| tree | 447683c4ddaf6e4380ad8f5f5dd20d4576f7428e /include/linux/gpio.h | |
| parent | 3474cb3cc0140f9cf6ca56983f8180b4b4c5c36a (diff) | |
| download | olio-linux-3.10-7c295975a85b049385dfe0d5ee0d4d543619fbdc.tar.xz olio-linux-3.10-7c295975a85b049385dfe0d5ee0d4d543619fbdc.zip  | |
gpio: make gpio_{request,free}_array gpio array parameter const
gpio_{request,free}_array should not (and do not) modify the passed gpio
array, so make the parameter const.
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Acked-by: Eric Miao <eric.y.miao@gmail.com>
Acked-by: Wolfram Sang <w.sang@pengutronix.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'include/linux/gpio.h')
| -rw-r--r-- | include/linux/gpio.h | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/gpio.h b/include/linux/gpio.h index 0f8265f8e8c..32d47e71066 100644 --- a/include/linux/gpio.h +++ b/include/linux/gpio.h @@ -41,7 +41,7 @@ static inline int gpio_request_one(unsigned gpio,  	return -ENOSYS;  } -static inline int gpio_request_array(struct gpio *array, size_t num) +static inline int gpio_request_array(const struct gpio *array, size_t num)  {  	return -ENOSYS;  } @@ -54,7 +54,7 @@ static inline void gpio_free(unsigned gpio)  	WARN_ON(1);  } -static inline void gpio_free_array(struct gpio *array, size_t num) +static inline void gpio_free_array(const struct gpio *array, size_t num)  {  	might_sleep();  |