Skip to content

Commit

Permalink
[ARM] 5527/1: ep93xx: core.c: trivial spelling error
Browse files Browse the repository at this point in the history
Fix trivial spelling error in arch/arm/mach-ep93xx/core.c

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Hartley Sweeten authored and Russell King committed May 29, 2009
1 parent e3a6d01 commit 68ee3d8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions arch/arm/mach-ep93xx/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ static unsigned char gpio_int_unmasked[3];
static unsigned char gpio_int_enabled[3];
static unsigned char gpio_int_type1[3];
static unsigned char gpio_int_type2[3];
static unsigned char gpio_int_debouce[3];
static unsigned char gpio_int_debounce[3];

/* Port ordering is: A B F */
static const u8 int_type1_register_offset[3] = { 0x90, 0xac, 0x4c };
Expand Down Expand Up @@ -192,11 +192,11 @@ void ep93xx_gpio_int_debounce(unsigned int irq, int enable)
int port_mask = 1 << (line & 7);

if (enable)
gpio_int_debouce[port] |= port_mask;
gpio_int_debounce[port] |= port_mask;
else
gpio_int_debouce[port] &= ~port_mask;
gpio_int_debounce[port] &= ~port_mask;

__raw_writeb(gpio_int_debouce[port],
__raw_writeb(gpio_int_debounce[port],
EP93XX_GPIO_REG(int_debounce_register_offset[port]));
}
EXPORT_SYMBOL(ep93xx_gpio_int_debounce);
Expand Down

0 comments on commit 68ee3d8

Please sign in to comment.