On Sat, 9 May 2020 18:47:08 +0200 Christophe JAILLET wrote:Hi,
Le 09/05/2020 Ã 03:54, Jakub Kicinski a ÃcritÂ:I understand the motivation is good.
On Fri, 8 May 2020 19:25:57 +0200 Christophe JAILLET wrote:Right.
@@ -527,8 +531,9 @@ static int mac_sonic_platform_remove(struct platform_device *pdev)This is a white-space only change, right? Since this is a fix we should
struct sonic_local* lp = netdev_priv(dev);
unregister_netdev(dev);
- dma_free_coherent(lp->device, SIZEOF_SONIC_DESC * SONIC_BUS_SCALE(lp->dma_bitmode),
- lp->descriptors, lp->descriptors_laddr);
+ dma_free_coherent(lp->device,
+ SIZEOF_SONIC_DESC * SONIC_BUS_SCALE(lp->dma_bitmode),
+ lp->descriptors, lp->descriptors_laddr);
free_netdev(dev);
return 0;
avoid making cleanups which are not strictly necessary.
The reason of this clean-up is that I wanted to avoid a checkpatch
warning with the proposed patch and I felt that having the same layout
in the error handling path of the probe function and in the remove
function was clearer.
So I updated also the remove function.
Fell free to ignore this hunk if not desired. I will not sent a V2 onlyThat's not how it works. Busy maintainers don't have time to hand edit
for that.
patches. I'm not applying this to the networking tree and I'm tossing it
from patchwork. Please address the basic feedback.
Thank you.