mirror of https://github.com/xemu-project/xemu.git
imx_fec: Fix a typo in imx_enet_receive()
Cc: Peter Maydell <peter.maydell@linaro.org> Cc: Jason Wang <jasowang@redhat.com> Cc: Philippe Mathieu-Daudé <f4bug@amsat.org> Cc: qemu-devel@nongnu.org Cc: qemu-arm@nongnu.org Cc: yurovsky@gmail.com Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
52cfd5846b
commit
894d74cc4f
|
@ -1150,7 +1150,7 @@ static ssize_t imx_enet_receive(NetClientState *nc, const uint8_t *buf,
|
||||||
size += 2;
|
size += 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Huge frames are truncted. */
|
/* Huge frames are truncated. */
|
||||||
if (size > s->regs[ENET_FTRL]) {
|
if (size > s->regs[ENET_FTRL]) {
|
||||||
size = s->regs[ENET_FTRL];
|
size = s->regs[ENET_FTRL];
|
||||||
flags |= ENET_BD_TR | ENET_BD_LG;
|
flags |= ENET_BD_TR | ENET_BD_LG;
|
||||||
|
|
Loading…
Reference in New Issue