net: dwc_eth_qos: fix double resource leak in eqos_remove()

Not only does eqos_remove() fail to free the buffers that have been
allocated by eqos_probe_resources_core(), it repeats those allocations
and thus drops twice as much memory on the floor.

Signed-off-by: Rasmus Villemoes <rasmus.villemoes@prevas.dk>
Reviewed-by: Ramon Fried <rfried.dev@gmail.com>
This commit is contained in:
Rasmus Villemoes 2022-05-11 16:12:50 +02:00 committed by Tom Rini
parent ecd8b03713
commit 4a7c9dbf9a

View file

@ -1574,7 +1574,7 @@ static int eqos_remove(struct udevice *dev)
eqos->config->ops->eqos_stop_clks(dev);
eqos->config->ops->eqos_remove_resources(dev);
eqos_probe_resources_core(dev);
eqos_remove_resources_core(dev);
debug("%s: OK\n", __func__);
return 0;