diff options
author | Axel Lin <axel.lin@ingics.com> | 2014-09-21 12:32:59 +0800 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2014-09-24 11:03:01 +0200 |
commit | 513d3c0f40c8e22fac019d5b0694374d17fbe682 (patch) | |
tree | efd813f2a818aaa94ec7b66758d7d21a1edda853 /drivers/gpio/gpio-xgene.c | |
parent | 02ed185af0c146b479e5c62f9aeff975672f1d2f (diff) | |
download | talos-obmc-linux-513d3c0f40c8e22fac019d5b0694374d17fbe682.tar.gz talos-obmc-linux-513d3c0f40c8e22fac019d5b0694374d17fbe682.zip |
gpio: xgene: Remove unneeded #ifdef CONFIG_OF guard
This driver depends on OF_GPIO, so it won't be built if !CONFIG_OF.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio/gpio-xgene.c')
-rw-r--r-- | drivers/gpio/gpio-xgene.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/gpio/gpio-xgene.c b/drivers/gpio/gpio-xgene.c index 5fcdac409fef..7d489221dc1f 100644 --- a/drivers/gpio/gpio-xgene.c +++ b/drivers/gpio/gpio-xgene.c @@ -220,13 +220,11 @@ static int xgene_gpio_remove(struct platform_device *pdev) return 0; } -#ifdef CONFIG_OF static const struct of_device_id xgene_gpio_of_match[] = { { .compatible = "apm,xgene-gpio", }, {}, }; MODULE_DEVICE_TABLE(of, xgene_gpio_of_match); -#endif static struct platform_driver xgene_gpio_driver = { .driver = { |