serial: 8250_pci1xxxx: partially revert off by one patch

I was reviewing this code again and I realized I made a mistake here.
It should have been > instead of >=.  The subtract ensures that we
don't go out of bounds.  My patch meant that we don't read the last
chunk of the buffer.

Fixes: 86ee55e9bc7f ("serial: 8250_pci1xxxx: fix off by one in pci1xxxx_process_read_data()")
Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
Link: https://lore.kernel.org/r/bd6fb361-bbb9-427d-90e8-a5df4de76221@moroto.mountain
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Dan Carpenter 2024-01-31 11:24:59 +03:00 committed by Greg Kroah-Hartman
parent 54be6c6c5a
commit 720e78d7fa

View File

@ -302,7 +302,7 @@ static void pci1xxxx_process_read_data(struct uart_port *port,
* to read, the data is received one byte at a time. * to read, the data is received one byte at a time.
*/ */
while (valid_burst_count--) { while (valid_burst_count--) {
if (*buff_index >= (RX_BUF_SIZE - UART_BURST_SIZE)) if (*buff_index > (RX_BUF_SIZE - UART_BURST_SIZE))
break; break;
burst_buf = (u32 *)&rx_buff[*buff_index]; burst_buf = (u32 *)&rx_buff[*buff_index];
*burst_buf = readl(port->membase + UART_RX_BURST_FIFO); *burst_buf = readl(port->membase + UART_RX_BURST_FIFO);