diff options
Diffstat (limited to 'sound/drivers')
-rw-r--r-- | sound/drivers/serial-u16550.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/drivers/serial-u16550.c b/sound/drivers/serial-u16550.c index 3958dbd626b2..f4156011945f 100644 --- a/sound/drivers/serial-u16550.c +++ b/sound/drivers/serial-u16550.c | |||
@@ -43,6 +43,7 @@ | |||
43 | #include <sound/initval.h> | 43 | #include <sound/initval.h> |
44 | 44 | ||
45 | #include <linux/serial_reg.h> | 45 | #include <linux/serial_reg.h> |
46 | #include <linux/jiffies.h> | ||
46 | 47 | ||
47 | #include <asm/io.h> | 48 | #include <asm/io.h> |
48 | 49 | ||
@@ -694,7 +695,7 @@ static void snd_uart16550_output_write(struct snd_rawmidi_substream *substream) | |||
694 | (uart->adaptor == SNDRV_SERIAL_SOUNDCANVAS || | 695 | (uart->adaptor == SNDRV_SERIAL_SOUNDCANVAS || |
695 | uart->adaptor == SNDRV_SERIAL_GENERIC) && | 696 | uart->adaptor == SNDRV_SERIAL_GENERIC) && |
696 | (uart->prev_out != substream->number || | 697 | (uart->prev_out != substream->number || |
697 | jiffies-lasttime > 3*HZ)) { | 698 | time_after(jiffies, lasttime + 3*HZ))) { |
698 | 699 | ||
699 | if (snd_uart16550_buffer_can_write(uart, 3)) { | 700 | if (snd_uart16550_buffer_can_write(uart, 3)) { |
700 | /* Roland Soundcanvas part selection */ | 701 | /* Roland Soundcanvas part selection */ |