13 Sep
2023
13 Sep
'23
7:52 p.m.
On Wed, Sep 13, 2023 at 11:41:04AM +0900, Myunguk Kim wrote:
ISR_RXFO means "Status of Data Overrun interrupt for the RX channel" according to the datasheet.
So, the comment should be RX, not TX
This patch still doesn't apply:
/* Error Handling: TX */
if (isr[i] & ISR_RXFO)/* Error Handling: RX */
{ dev_err_ratelimited(dev->dev, "RX overrun (ch_id=%d)\n", i);
The patch is obviously corrupted, the { there should be on the prior line and even fixing that by hand there appear to be some other issues.