aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorDmitry Baryshkov <dbaryshkov@gmail.com>2008-04-19 05:42:18 -0400
committerRussell King <rmk+kernel@arm.linux.org.uk>2008-04-19 06:29:09 -0400
commitd8a42fc45517081d1a8cf050a86eb79b0e290774 (patch)
treefd3f423257ad408ac04e342bb3ecb10e737dcc3f /arch
parentb907ef688ddb6d73fc1c83b6fbcd62f5c2c2a14f (diff)
[ARM] 5003/1: Shut up sparse warnings
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>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/mach-pxa/gpio.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-pxa/gpio.c b/arch/arm/mach-pxa/gpio.c
index 1a7057991da6..7d3e16970be0 100644
--- a/arch/arm/mach-pxa/gpio.c
+++ b/arch/arm/mach-pxa/gpio.c
@@ -161,9 +161,9 @@ static struct pxa_gpio_chip pxa_gpio_chip[] = {
161 * Use this instead of directly setting GRER/GFER. 161 * Use this instead of directly setting GRER/GFER.
162 */ 162 */
163 163
164static long GPIO_IRQ_rising_edge[4]; 164static unsigned long GPIO_IRQ_rising_edge[4];
165static long GPIO_IRQ_falling_edge[4]; 165static unsigned long GPIO_IRQ_falling_edge[4];
166static long GPIO_IRQ_mask[4]; 166static unsigned long GPIO_IRQ_mask[4];
167 167
168/* 168/*
169 * On PXA25x and PXA27x, GAFRx and GPDRx together decide the alternate 169 * On PXA25x and PXA27x, GAFRx and GPDRx together decide the alternate