diff options
Diffstat (limited to 'drivers/serial/sh-sci.c')
-rw-r--r-- | drivers/serial/sh-sci.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/serial/sh-sci.c b/drivers/serial/sh-sci.c index 8e2feb563347..4cbb87ad070a 100644 --- a/drivers/serial/sh-sci.c +++ b/drivers/serial/sh-sci.c | |||
@@ -662,10 +662,11 @@ static irqreturn_t sci_rx_interrupt(int irq, void *port) | |||
662 | static irqreturn_t sci_tx_interrupt(int irq, void *ptr) | 662 | static irqreturn_t sci_tx_interrupt(int irq, void *ptr) |
663 | { | 663 | { |
664 | struct uart_port *port = ptr; | 664 | struct uart_port *port = ptr; |
665 | unsigned long flags; | ||
665 | 666 | ||
666 | spin_lock_irq(&port->lock); | 667 | spin_lock_irqsave(&port->lock, flags); |
667 | sci_transmit_chars(port); | 668 | sci_transmit_chars(port); |
668 | spin_unlock_irq(&port->lock); | 669 | spin_unlock_irqrestore(&port->lock, flags); |
669 | 670 | ||
670 | return IRQ_HANDLED; | 671 | return IRQ_HANDLED; |
671 | } | 672 | } |