Skip to content
Snippets Groups Projects
Commit 53419bac authored by Stephen Warren's avatar Stephen Warren Committed by Marek Vasut
Browse files

usb: eth: fix memalign() parameter order


The alignment and size were swapped, leading to malloc heap corruption.

On my system, this sometimes caused U-Boot to crash during or after
certain USB Ethernet operations.

Fixes: c8c2797c ("dm: usb: eth: Support driver model with USB Ethernet")
Signed-off-by: default avatarStephen Warren <swarren@nvidia.com>
parent 7124a8c4
Branches
Tags
No related merge requests found
......@@ -73,7 +73,7 @@ int usb_ether_register(struct udevice *dev, struct ueth_data *ueth, int rxsize)
}
ueth->rxsize = rxsize;
ueth->rxbuf = memalign(rxsize, ARCH_DMA_MINALIGN);
ueth->rxbuf = memalign(ARCH_DMA_MINALIGN, rxsize);
if (!ueth->rxbuf)
return -ENOMEM;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment