Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'tty-5.7-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty

Pull tty/serial fix from Greg KH:
"Here is a single serial driver fix for 5.7-rc7. It resolves an issue
with the SiFive serial console init sequence that was reported a
number of times.

It has been in linux-next for a while now with no reported issues"

* tag 'tty-5.7-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty:
tty: serial: add missing spin_lock_init for SiFive serial console

+1
+1
drivers/tty/serial/sifive.c
··· 883 883 884 884 static void __ssp_add_console_port(struct sifive_serial_port *ssp) 885 885 { 886 + spin_lock_init(&ssp->port.lock); 886 887 sifive_serial_console_ports[ssp->port.line] = ssp; 887 888 } 888 889