diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2013-07-10 14:55:36 +0300 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2013-07-23 01:23:25 +0200 |
commit | ec243320e02ca9e3cb64c0ba774e25db73b32fdb (patch) | |
tree | 54f7c45c4efe07dcce3a8222ee5fffb06a9630b5 /drivers | |
parent | f6b178851c1ca10fe8749e5f803e7795edcd40b9 (diff) | |
download | blackbird-obmc-linux-ec243320e02ca9e3cb64c0ba774e25db73b32fdb.tar.gz blackbird-obmc-linux-ec243320e02ca9e3cb64c0ba774e25db73b32fdb.zip |
pinctrl-baytrail: fix indentations
There are two minor issues with indentation in the code. This patch fixes them.
No functional changes.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/pinctrl/Kconfig | 2 | ||||
-rw-r--r-- | drivers/pinctrl/pinctrl-baytrail.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/drivers/pinctrl/Kconfig b/drivers/pinctrl/Kconfig index 5a8ad5139312..bc830af1b23d 100644 --- a/drivers/pinctrl/Kconfig +++ b/drivers/pinctrl/Kconfig @@ -61,7 +61,7 @@ config PINCTRL_AT91 config PINCTRL_BAYTRAIL bool "Intel Baytrail GPIO pin control" depends on GPIOLIB && ACPI && X86 - select IRQ_DOMAIN + select IRQ_DOMAIN help driver for memory mapped GPIO functionality on Intel Baytrail platforms. Supports 3 banks with 102, 28 and 44 gpios. diff --git a/drivers/pinctrl/pinctrl-baytrail.c b/drivers/pinctrl/pinctrl-baytrail.c index e9d735dcebfb..fccf72eea079 100644 --- a/drivers/pinctrl/pinctrl-baytrail.c +++ b/drivers/pinctrl/pinctrl-baytrail.c @@ -516,6 +516,7 @@ static int byt_gpio_remove(struct platform_device *pdev) { struct byt_gpio *vg = platform_get_drvdata(pdev); int err; + pm_runtime_disable(&pdev->dev); err = gpiochip_remove(&vg->chip); if (err) |