Skip to content

Commit

Permalink
[PATCH] ioc4_serial: irq flags fix
Browse files Browse the repository at this point in the history
Use the correct type for the CPU flags.

Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Andrew Morton authored and Linus Torvalds committed Oct 30, 2006
1 parent 37af656 commit a5a89ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/serial/ioc4_serial.c
Original file line number Diff line number Diff line change
Expand Up @@ -921,7 +921,7 @@ static void handle_dma_error_intr(void *arg, uint32_t other_ir)
{
struct ioc4_port *port = (struct ioc4_port *)arg;
struct hooks *hooks = port->ip_hooks;
unsigned int flags;
unsigned long flags;

spin_lock_irqsave(&port->ip_lock, flags);

Expand Down Expand Up @@ -1834,7 +1834,7 @@ static void handle_intr(void *arg, uint32_t sio_ir)
struct ioc4_port *port = (struct ioc4_port *)arg;
struct hooks *hooks = port->ip_hooks;
unsigned int rx_high_rd_aborted = 0;
unsigned int flags;
unsigned long flags;
struct uart_port *the_port;
int loop_counter;

Expand Down

0 comments on commit a5a89ba

Please sign in to comment.