diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2014-10-28 13:06:56 +0300 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2014-11-25 19:18:56 +0300 |
commit | 90f2d0f7bf069b1a2798156b7dcc8e7d1e874406 (patch) | |
tree | 2e061f56b493848c147af369fcc7d0dd9a1b6373 /drivers/gpio | |
parent | 47958c5ab4035bd91f05598f76a61cd9f7f2934c (diff) | |
download | linux-90f2d0f7bf069b1a2798156b7dcc8e7d1e874406.tar.xz |
mfd: tc3589x: get rid of static base
The TC3589x driver is now a device tree-only driver, so we want
only dynamic IRQs and GPIO numbers from the tc3589x, no static
assignments.
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio')
-rw-r--r-- | drivers/gpio/gpio-tc3589x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-tc3589x.c b/drivers/gpio/gpio-tc3589x.c index ae0f6466eb09..abdcf58935f5 100644 --- a/drivers/gpio/gpio-tc3589x.c +++ b/drivers/gpio/gpio-tc3589x.c @@ -262,7 +262,7 @@ static int tc3589x_gpio_probe(struct platform_device *pdev) tc3589x_gpio->chip = template_chip; tc3589x_gpio->chip.ngpio = tc3589x->num_gpio; tc3589x_gpio->chip.dev = &pdev->dev; - tc3589x_gpio->chip.base = (pdata) ? pdata->gpio_base : -1; + tc3589x_gpio->chip.base = -1; #ifdef CONFIG_OF_GPIO tc3589x_gpio->chip.of_node = np; |