diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2012-11-20 06:40:15 -0500 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2012-11-21 02:55:03 -0500 |
commit | 3f0f8670608766ef26a178d4e80cad3ce030fecc (patch) | |
tree | d2f192a4a454bd677983c7eb0b88a0016f128bf6 /include/asm-generic | |
parent | 5212d096cbed2eae1e442b3f8bf448e6a577af6f (diff) |
gpiolib: let gpiochip_add_pin_range() specify offset
Like with commit 3c739ad0df5eb41cd7adad879eda6aa09879eb76
it is not always enough to specify all the pins of a gpio_chip
from offset zero to be added to a pin map range, since the
mapping from GPIO to pin controller may not be linear at all,
but need to be broken into a few consecutive sub-ranges or
1-pin entries for complicated cases. The ranges may also be
sparse.
This alters the signature of the function to accept offsets
into both the GPIO-chip local pinspace and the pin controller
local pinspace.
Reviewed-by: Stephen Warren <swarren@nvidia.com>
Reviewed-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'include/asm-generic')
-rw-r--r-- | include/asm-generic/gpio.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/asm-generic/gpio.h b/include/asm-generic/gpio.h index 2b84fc32fae..ec58fdbddb5 100644 --- a/include/asm-generic/gpio.h +++ b/include/asm-generic/gpio.h | |||
@@ -283,14 +283,16 @@ struct gpio_pin_range { | |||
283 | }; | 283 | }; |
284 | 284 | ||
285 | int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name, | 285 | int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name, |
286 | unsigned int pin_base, unsigned int npins); | 286 | unsigned int offset, unsigned int pin_base, |
287 | unsigned int npins); | ||
287 | void gpiochip_remove_pin_ranges(struct gpio_chip *chip); | 288 | void gpiochip_remove_pin_ranges(struct gpio_chip *chip); |
288 | 289 | ||
289 | #else | 290 | #else |
290 | 291 | ||
291 | static inline int | 292 | static inline int |
292 | gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name, | 293 | gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name, |
293 | unsigned int pin_base, unsigned int npins) | 294 | unsigned int offset, unsigned int pin_base, |
295 | unsigned int npins) | ||
294 | { | 296 | { |
295 | return 0; | 297 | return 0; |
296 | } | 298 | } |