]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
gpio: pch: fix non-DT build
authorLinus Walleij <linus.walleij@linaro.org>
Tue, 15 Dec 2015 13:41:44 +0000 (14:41 +0100)
committerLinus Walleij <linus.walleij@linaro.org>
Tue, 15 Dec 2015 13:41:44 +0000 (14:41 +0100)
commit 1cfadea8f395e3fb6a15ea548e3e86c8b6d64f98
"gpio: pch: allow use from device tree"
makes the driver not compile unless CONFIG_OF_GPIO is set.
Fix it.

Cc: Paul Burton <paul.burton@imgtec.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpio-pch.c

index a650a6cc1312e7988f538aa4560d214e6bdfba0e..af0715f8524bba0a4ef5b8ebecccab9bd604f249 100644 (file)
@@ -394,7 +394,9 @@ static int pch_gpio_probe(struct pci_dev *pdev,
        pci_set_drvdata(pdev, chip);
        spin_lock_init(&chip->spinlock);
        pch_gpio_setup(chip);
+#ifdef CONFIG_OF_GPIO
        chip->gpio.of_node = pdev->dev.of_node;
+#endif
        ret = gpiochip_add(&chip->gpio);
        if (ret) {
                dev_err(&pdev->dev, "PCH gpio: Failed to register GPIO\n");