diff options
author | Alexandre Courbot <acourbot@nvidia.com> | 2013-03-11 11:45:00 +0900 |
---|---|---|
committer | Alexandre Courbot <acourbot@nvidia.com> | 2013-03-20 22:48:14 +0900 |
commit | f9612a65ec0a0457ee62c94e42f89abf2f8fbe21 (patch) | |
tree | aa94ce7a356ecf95612f075536c21081329974a4 | |
parent | 1b920175062bf5baaa94f50b0b309ceaf47ad019 (diff) | |
download | linux-3.10-f9612a65ec0a0457ee62c94e42f89abf2f8fbe21.tar.gz linux-3.10-f9612a65ec0a0457ee62c94e42f89abf2f8fbe21.tar.bz2 linux-3.10-f9612a65ec0a0457ee62c94e42f89abf2f8fbe21.zip |
mips: txx9: change GENERIC_GPIO to GPIOLIB
The GPIO driver for txx9 requires gpiolib, so this is more accurate and
let us get rid of one mention of GENERIC_GPIO which is due to disappear.
Signed-off-by: Alexandre Courbot <acourbot@nvidia.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r-- | arch/mips/txx9/generic/setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/txx9/generic/setup.c b/arch/mips/txx9/generic/setup.c index 5524f2c7b05..5364aabc210 100644 --- a/arch/mips/txx9/generic/setup.c +++ b/arch/mips/txx9/generic/setup.c @@ -118,7 +118,7 @@ EXPORT_SYMBOL(clk_put); /* GPIO support */ -#ifdef CONFIG_GENERIC_GPIO +#ifdef CONFIG_GPIOLIB int gpio_to_irq(unsigned gpio) { return -EINVAL; |