Re: [PATCH 2/3] designware: Use the remove() method with related drivers

2025-04-06 Thread Simon Glass
Hi Jonas, On Mon, 7 Apr 2025 at 09:36, Jonas Karlman wrote: > > Hi Simon, > > On 2025-04-06 23:10, Simon Glass wrote: > > Hi Jonas, > > > > On Sun, 6 Apr 2025 at 21:02, Jonas Karlman wrote: > >> > >> Hi Simon, > >> > >> On 2025-04-06 00:12, Simon Glass wrote: > >>> Several drivers make use of th

Re: [PATCH 2/3] designware: Use the remove() method with related drivers

2025-04-06 Thread Jonas Karlman
Hi Simon, On 2025-04-06 23:10, Simon Glass wrote: > Hi Jonas, > > On Sun, 6 Apr 2025 at 21:02, Jonas Karlman wrote: >> >> Hi Simon, >> >> On 2025-04-06 00:12, Simon Glass wrote: >>> Several drivers make use of the designware Ethernet driver but do not >>> implement the remove() method. Add this

Re: [PATCH 2/3] designware: Use the remove() method with related drivers

2025-04-06 Thread Simon Glass
Hi Jonas, On Sun, 6 Apr 2025 at 21:02, Jonas Karlman wrote: > > Hi Simon, > > On 2025-04-06 00:12, Simon Glass wrote: > > Several drivers make use of the designware Ethernet driver but do not > > implement the remove() method. Add this so that DMA is stopped when the > > OS is booted to avoid mem

Re: [PATCH 2/3] designware: Use the remove() method with related drivers

2025-04-06 Thread Jonas Karlman
Hi Simon, On 2025-04-06 00:12, Simon Glass wrote: > Several drivers make use of the designware Ethernet driver but do not > implement the remove() method. Add this so that DMA is stopped when the > OS is booted to avoid memory corruption, etc. The designware Ethernet driver core should not need t

[PATCH 2/3] designware: Use the remove() method with related drivers

2025-04-05 Thread Simon Glass
Several drivers make use of the designware Ethernet driver but do not implement the remove() method. Add this so that DMA is stopped when the OS is booted to avoid memory corruption, etc. Signed-off-by: Simon Glass Reported-by: Christian Kohlschütter --- drivers/net/designware.c| 2 +- dr