mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
xilinx_emaclite buffer overrun
Patch to fix buffer allocation size and alignment. Buffer needs to be u32 aligned and PKTSIZE_ALIGN bytes long. Acked-by: Michal Simek <monstr@monstr.eu> Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
This commit is contained in:
parent
0115b19537
commit
f2a7806fc2
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ typedef struct {
|
|||
|
||||
static xemaclite emaclite;
|
||||
|
||||
static char etherrxbuff[PKTSIZE_ALIGN/4]; /* Receive buffer */
|
||||
static u32 etherrxbuff[PKTSIZE_ALIGN/4]; /* Receive buffer */
|
||||
|
||||
/* hardcoded MAC address for the Xilinx EMAC Core when env is nowhere*/
|
||||
#ifdef CONFIG_ENV_IS_NOWHERE
|
||||
|
|
Loading…
Reference in a new issue