Skip to content

Commit

Permalink
ite_gpio fix tabbage
Browse files Browse the repository at this point in the history
caught some leading spaces in passing.

Signed-off-by: Adrian Bunk <bunk@stusta.de>
  • Loading branch information
Jim Cromie authored and Adrian Bunk committed Oct 3, 2006
1 parent f30c226 commit c98acc5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions drivers/char/ite_gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -384,13 +384,13 @@ int __init ite_gpio_init(void)
}

/* initialize registers */
ITE_GPACR = 0xffff;
ITE_GPBCR = 0xffff;
ITE_GPCCR = 0xffff;
ITE_GPAICR = 0x00ff;
ITE_GPBICR = 0x00ff;
ITE_GPCICR = 0x00ff;
ITE_GCR = 0;
ITE_GPACR = 0xffff;
ITE_GPBCR = 0xffff;
ITE_GPCCR = 0xffff;
ITE_GPAICR = 0x00ff;
ITE_GPBICR = 0x00ff;
ITE_GPCICR = 0x00ff;
ITE_GCR = 0;

for (i = 0; i < MAX_GPIO_LINE; i++) {
ite_gpio_irq_pending[i]=0;
Expand Down

0 comments on commit c98acc5

Please sign in to comment.