diff options
author | Jean Delvare <khali@linux-fr.org> | 2011-05-20 10:40:18 +0400 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2011-05-20 10:40:18 +0400 |
commit | 8fa0c9bf82b0b8697ace9532c5a50a0f4e0c7bb5 (patch) | |
tree | 92a422f578f9da6596f178d852447181c9aae51b /drivers/gpio | |
parent | 6cff9e2b34414733fa61fddef909e9ae1e4beaf3 (diff) | |
download | linux-8fa0c9bf82b0b8697ace9532c5a50a0f4e0c7bb5.tar.xz |
gpiolib: export gpiochip_find
Export function gpiochip_find so that modules can use it.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'drivers/gpio')
-rw-r--r-- | drivers/gpio/gpiolib.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c index 36a2974815b7..c27e52b56d66 100644 --- a/drivers/gpio/gpiolib.c +++ b/drivers/gpio/gpiolib.c @@ -1165,6 +1165,7 @@ struct gpio_chip *gpiochip_find(void *data, return chip; } +EXPORT_SYMBOL_GPL(gpiochip_find); /* These "optional" allocation calls help prevent drivers from stomping * on each other, and help provide better diagnostics in debugfs. |