Commit a54373ee authored by Jesper Nilsson's avatar Jesper Nilsson

[CRISv32] Remove warning in io.h

Variable flags need to be unsigned.
Signed-off-by: default avatarJesper Nilsson <jesper.nilsson@axis.com>
parent 2515ddc6
...@@ -43,7 +43,7 @@ extern struct crisv32_iopin crisv32_led_net1_red; ...@@ -43,7 +43,7 @@ extern struct crisv32_iopin crisv32_led_net1_red;
static inline void crisv32_io_set(struct crisv32_iopin *iopin, int val) static inline void crisv32_io_set(struct crisv32_iopin *iopin, int val)
{ {
long flags; unsigned long flags;
spin_lock_irqsave(&iopin->port->lock, flags); spin_lock_irqsave(&iopin->port->lock, flags);
if (val) if (val)
...@@ -57,7 +57,7 @@ static inline void crisv32_io_set(struct crisv32_iopin *iopin, int val) ...@@ -57,7 +57,7 @@ static inline void crisv32_io_set(struct crisv32_iopin *iopin, int val)
static inline void crisv32_io_set_dir(struct crisv32_iopin* iopin, static inline void crisv32_io_set_dir(struct crisv32_iopin* iopin,
enum crisv32_io_dir dir) enum crisv32_io_dir dir)
{ {
long flags; unsigned long flags;
spin_lock_irqsave(&iopin->port->lock, flags); spin_lock_irqsave(&iopin->port->lock, flags);
if (dir == crisv32_io_dir_in) if (dir == crisv32_io_dir_in)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment