diff options
author | Jesper Nilsson <jesper.nilsson@axis.com> | 2008-10-23 10:44:29 -0400 |
---|---|---|
committer | Jesper Nilsson <jesper.nilsson@axis.com> | 2008-10-23 10:44:29 -0400 |
commit | a54373eee6e9f5e986a251e852ee1bb83e03671b (patch) | |
tree | 742da7a21e021cec35c505993b78ad9ba1ea5ee3 /include | |
parent | 2515ddc6db8eb49a79f0fe5e67ff09ac7c81eab4 (diff) |
[CRISv32] Remove warning in io.h
Variable flags need to be unsigned.
Signed-off-by: Jesper Nilsson <jesper.nilsson@axis.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-cris/arch-v32/io.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-cris/arch-v32/io.h b/include/asm-cris/arch-v32/io.h index 6b38912f29ba..72024452cea9 100644 --- a/include/asm-cris/arch-v32/io.h +++ b/include/asm-cris/arch-v32/io.h | |||
@@ -43,7 +43,7 @@ extern struct crisv32_iopin crisv32_led_net1_red; | |||
43 | 43 | ||
44 | static inline void crisv32_io_set(struct crisv32_iopin *iopin, int val) | 44 | static inline void crisv32_io_set(struct crisv32_iopin *iopin, int val) |
45 | { | 45 | { |
46 | long flags; | 46 | unsigned long flags; |
47 | spin_lock_irqsave(&iopin->port->lock, flags); | 47 | spin_lock_irqsave(&iopin->port->lock, flags); |
48 | 48 | ||
49 | if (val) | 49 | if (val) |
@@ -57,7 +57,7 @@ static inline void crisv32_io_set(struct crisv32_iopin *iopin, int val) | |||
57 | static inline void crisv32_io_set_dir(struct crisv32_iopin* iopin, | 57 | static inline void crisv32_io_set_dir(struct crisv32_iopin* iopin, |
58 | enum crisv32_io_dir dir) | 58 | enum crisv32_io_dir dir) |
59 | { | 59 | { |
60 | long flags; | 60 | unsigned long flags; |
61 | spin_lock_irqsave(&iopin->port->lock, flags); | 61 | spin_lock_irqsave(&iopin->port->lock, flags); |
62 | 62 | ||
63 | if (dir == crisv32_io_dir_in) | 63 | if (dir == crisv32_io_dir_in) |