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.15-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty

Pull tty/serial fixes from Greg KH:
"Here are four small tty/serial driver fixes for 5.15-rc3. They
include:

- remove an export now that no one is using it anymore

- mvebu-uart tx_empty callback fix

- 8250_omap bugfix

- synclink_gt build fix

All of these have been in linux-next for a while with no reported
issues"

* tag 'tty-5.15-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty:
tty: unexport tty_ldisc_release
tty: synclink_gt: rename a conflicting function name
serial: mvebu-uart: fix driver's tx_empty callback
serial: 8250: 8250_omap: Fix RX_LVL register offset

+24 -25
+1 -1
drivers/tty/serial/8250/8250_omap.c
··· 106 106 #define UART_OMAP_EFR2_TIMEOUT_BEHAVE BIT(6) 107 107 108 108 /* RX FIFO occupancy indicator */ 109 - #define UART_OMAP_RX_LVL 0x64 109 + #define UART_OMAP_RX_LVL 0x19 110 110 111 111 struct omap8250_priv { 112 112 int line;
+1 -1
drivers/tty/serial/mvebu-uart.c
··· 163 163 st = readl(port->membase + UART_STAT); 164 164 spin_unlock_irqrestore(&port->lock, flags); 165 165 166 - return (st & STAT_TX_FIFO_EMP) ? TIOCSER_TEMT : 0; 166 + return (st & STAT_TX_EMP) ? TIOCSER_TEMT : 0; 167 167 } 168 168 169 169 static unsigned int mvebu_uart_get_mctrl(struct uart_port *port)
-1
drivers/tty/tty_ldisc.c
··· 812 812 813 813 tty_ldisc_debug(tty, "released\n"); 814 814 } 815 - EXPORT_SYMBOL_GPL(tty_ldisc_release); 816 815 817 816 /** 818 817 * tty_ldisc_init - ldisc setup for new tty