diff options
| author | Laurent Navet <laurent.navet@gmail.com> | 2013-03-20 13:16:02 +0100 | 
|---|---|---|
| committer | Linus Walleij <linus.walleij@linaro.org> | 2013-03-27 16:05:17 +0100 | 
| commit | e90c636be6afbbd46779d180594bda60bc01a821 (patch) | |
| tree | 13e03a8cbcc6abbc9739e3b88c7d1a3663fd7746 | |
| parent | 8ab2a6d20ec65e9607254f718bd295dd3361d6c3 (diff) | |
| download | olio-linux-3.10-e90c636be6afbbd46779d180594bda60bc01a821.tar.xz olio-linux-3.10-e90c636be6afbbd46779d180594bda60bc01a821.zip  | |
gpio: gpio-tc3589x.c: fix checkpatch errors
Fix :
 gpio/gpio-tc3589x.c:285: ERROR: code indent should use tabs where possible
 gpio/gpio-tc3589x.c:286: ERROR: code indent should use tabs where possible
 gpio/gpio-tc3589x.c:287: ERROR: code indent should use tabs where possible
 gpio/gpio-tc3589x.c:347: ERROR: code indent should use tabs where possible
Signed-off-by: Laurent Navet <laurent.navet@gmail.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
| -rw-r--r-- | drivers/gpio/gpio-tc3589x.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/gpio/gpio-tc3589x.c b/drivers/gpio/gpio-tc3589x.c index c0595bbf326..d34d80dfb08 100644 --- a/drivers/gpio/gpio-tc3589x.c +++ b/drivers/gpio/gpio-tc3589x.c @@ -282,9 +282,9 @@ static void tc3589x_gpio_irq_unmap(struct irq_domain *d, unsigned int virq)  }  static struct irq_domain_ops tc3589x_irq_ops = { -        .map    = tc3589x_gpio_irq_map, -        .unmap  = tc3589x_gpio_irq_unmap, -        .xlate  = irq_domain_xlate_twocell, +	.map    = tc3589x_gpio_irq_map, +	.unmap  = tc3589x_gpio_irq_unmap, +	.xlate  = irq_domain_xlate_twocell,  };  static int tc3589x_gpio_irq_init(struct tc3589x_gpio *tc3589x_gpio, @@ -344,7 +344,7 @@ static int tc3589x_gpio_probe(struct platform_device *pdev)  	tc3589x_gpio->chip.base = (pdata) ? pdata->gpio_base : -1;  #ifdef CONFIG_OF_GPIO -        tc3589x_gpio->chip.of_node = np; +	tc3589x_gpio->chip.of_node = np;  #endif  	tc3589x_gpio->irq_base = tc3589x->irq_base ?  |