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

serial: tegra: fix some spelling mistakes

Fix a few spelling mistakes I stumbled upon while debugging a customers
UART issues.

Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Marcel Ziswiler and committed by
Greg Kroah-Hartman
3957386a acef6660

+5 -5
+5 -5
drivers/tty/serial/serial-tegra.c
··· 746 746 if (!tup->rx_in_progress) 747 747 return; 748 748 749 - tegra_uart_wait_sym_time(tup, 1); /* wait a character interval */ 749 + tegra_uart_wait_sym_time(tup, 1); /* wait one character interval */ 750 750 751 751 ier = tup->ier_shadow; 752 752 ier &= ~(UART_IER_RDI | UART_IER_RLSI | UART_IER_RTOIE | ··· 887 887 * 888 888 * EORD is different interrupt than RX_TIMEOUT - RX_TIMEOUT occurs when 889 889 * the DATA is sitting in the FIFO and couldn't be transferred to the 890 - * DMA as the DMA size alignment(4 bytes) is not met. EORD will be 890 + * DMA as the DMA size alignment (4 bytes) is not met. EORD will be 891 891 * triggered when there is a pause of the incomming data stream for 4 892 892 * characters long. 893 893 * ··· 1079 1079 if (tup->rts_active) 1080 1080 set_rts(tup, false); 1081 1081 1082 - /* Clear all interrupts as configuration is going to be change */ 1082 + /* Clear all interrupts as configuration is going to be changed */ 1083 1083 tegra_uart_write(tup, tup->ier_shadow | UART_IER_RDI, UART_IER); 1084 1084 tegra_uart_read(tup, UART_IER); 1085 1085 tegra_uart_write(tup, 0, UART_IER); ··· 1165 1165 /* update the port timeout based on new settings */ 1166 1166 uart_update_timeout(u, termios->c_cflag, baud); 1167 1167 1168 - /* Make sure all write has completed */ 1168 + /* Make sure all writes have completed */ 1169 1169 tegra_uart_read(tup, UART_IER); 1170 1170 1171 - /* Reenable interrupt */ 1171 + /* Re-enable interrupt */ 1172 1172 tegra_uart_write(tup, tup->ier_shadow, UART_IER); 1173 1173 tegra_uart_read(tup, UART_IER); 1174 1174