Skip to content

Commit

Permalink
[ARM] 5003/1: Shut up sparse warnings
Browse files Browse the repository at this point in the history
Shut up sparse warnings by making GPIO_IRQ_MASK unisgned

Signed-off-by: Dmitry Baryshkov <dbaryshkov@gmail.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Dmitry Baryshkov authored and Russell King committed Apr 19, 2008
1 parent b907ef6 commit d8a42fc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arch/arm/mach-pxa/gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -161,9 +161,9 @@ static struct pxa_gpio_chip pxa_gpio_chip[] = {
* Use this instead of directly setting GRER/GFER.
*/

static long GPIO_IRQ_rising_edge[4];
static long GPIO_IRQ_falling_edge[4];
static long GPIO_IRQ_mask[4];
static unsigned long GPIO_IRQ_rising_edge[4];
static unsigned long GPIO_IRQ_falling_edge[4];
static unsigned long GPIO_IRQ_mask[4];

/*
* On PXA25x and PXA27x, GAFRx and GPDRx together decide the alternate
Expand Down

0 comments on commit d8a42fc

Please sign in to comment.