Re: [PATCH 2/3] net: ravb: Fix RX frame size limit

2025-03-05 Thread Marek Vasut
On 3/5/25 9:40 PM, Paul Barker wrote: Hi Marek, On 05/03/2025 19:53, Marek Vasut wrote: On 3/4/25 9:07 PM, Paul Barker wrote: The value written to the RFLR register includes the length of the CRC data at the end of each Ethernet frame. So we need to increase the value written to this register

Re: [PATCH 2/3] net: ravb: Fix RX frame size limit

2025-03-05 Thread Paul Barker
Hi Marek, On 05/03/2025 19:53, Marek Vasut wrote: > On 3/4/25 9:07 PM, Paul Barker wrote: >> The value written to the RFLR register includes the length of the CRC >> data at the end of each Ethernet frame. So we need to increase the value >> written to this register to ensure that we can receive f

Re: [PATCH 2/3] net: ravb: Fix RX frame size limit

2025-03-05 Thread Marek Vasut
On 3/4/25 9:07 PM, Paul Barker wrote: The value written to the RFLR register includes the length of the CRC data at the end of each Ethernet frame. So we need to increase the value written to this register to ensure that we can receive full size frames. While we're here we can also copy the impr

[PATCH 2/3] net: ravb: Fix RX frame size limit

2025-03-04 Thread Paul Barker
The value written to the RFLR register includes the length of the CRC data at the end of each Ethernet frame. So we need to increase the value written to this register to ensure that we can receive full size frames. While we're here we can also copy the improved comment from the Linux kernel. Fix