mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 14:42:24 +00:00
tty/serial fixes for 4.3-rc7
Here are two fixes that resolve reported issues, one with the 8250 driver, and the other with the generic fbcon driver. Both have been in linux-next for a while. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iEYEABECAAYFAlYqpWsACgkQMUfUDdst+yn4KgCgh7vFSjdHZa2wgKUz+kIgySRb CK0An2+SwlC4Z8lQAYGhF2XEBjEcTc2b =I32U -----END PGP SIGNATURE----- Merge tag 'tty-4.3-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty Pull tty/serial fixes from Greg KH: "Here are two fixes that resolve reported issues, one with the 8250 driver, and the other with the generic fbcon driver. Both have been in linux-next for a while" * tag 'tty-4.3-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty: fbcon: initialize blink interval before calling fb_set_par Revert "serial: 8250_dma: don't bother DMA with small transfers"
This commit is contained in:
commit
dd5ae6818c
@ -80,10 +80,6 @@ int serial8250_tx_dma(struct uart_8250_port *p)
|
||||
return 0;
|
||||
|
||||
dma->tx_size = CIRC_CNT_TO_END(xmit->head, xmit->tail, UART_XMIT_SIZE);
|
||||
if (dma->tx_size < p->port.fifosize) {
|
||||
ret = -EINVAL;
|
||||
goto err;
|
||||
}
|
||||
|
||||
desc = dmaengine_prep_slave_single(dma->txchan,
|
||||
dma->tx_addr + xmit->tail,
|
||||
|
@ -1093,6 +1093,7 @@ static void fbcon_init(struct vc_data *vc, int init)
|
||||
con_copy_unimap(vc, svc);
|
||||
|
||||
ops = info->fbcon_par;
|
||||
ops->cur_blink_jiffies = msecs_to_jiffies(vc->vc_cur_blink_ms);
|
||||
p->con_rotate = initial_rotation;
|
||||
set_blitting_type(vc, info);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user