Skip to content

Commit

Permalink
gpio: gpio-pxa.c: fix checkpatch errors
Browse files Browse the repository at this point in the history
Fix :
 gpio/gpio-pxa.c:605: ERROR: space required after that ',' (ctx:VxV)
 gpio/gpio-pxa.c:672: ERROR: space prohibited after that open parenthesis '('

Signed-off-by: Laurent Navet <laurent.navet@gmail.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
  • Loading branch information
Laurent Navet authored and Linus Walleij committed Mar 27, 2013
1 parent 50e4443 commit e37f4af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/gpio/gpio-pxa.c
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ static int pxa_gpio_probe(struct platform_device *pdev)
for_each_gpio_chip(gpio, c) {
writel_relaxed(0, c->regbase + GFER_OFFSET);
writel_relaxed(0, c->regbase + GRER_OFFSET);
writel_relaxed(~0,c->regbase + GEDR_OFFSET);
writel_relaxed(~0, c->regbase + GEDR_OFFSET);
/* unmask GPIO edge detect for AP side */
if (gpio_is_mmp_type(gpio_type))
writel_relaxed(~0, c->regbase + ED_MASK_OFFSET);
Expand Down Expand Up @@ -669,7 +669,7 @@ static void pxa_gpio_resume(void)

for_each_gpio_chip(gpio, c) {
/* restore level with set/clear */
writel_relaxed( c->saved_gplr, c->regbase + GPSR_OFFSET);
writel_relaxed(c->saved_gplr, c->regbase + GPSR_OFFSET);
writel_relaxed(~c->saved_gplr, c->regbase + GPCR_OFFSET);

writel_relaxed(c->saved_grer, c->regbase + GRER_OFFSET);
Expand Down

0 comments on commit e37f4af

Please sign in to comment.