mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
net: davinci_emac: fix NULL check after pointer dereference
NULL check is made after the pointer dereference. This patch fixes this issue. Signed-off-by: Vishwas Srivastava <vishu.kernel@gmail.com> CC: Joe Hershberger <joe.hershberger@ni.com> Reviewed-by: Tom Rini <trini@konsulko.com> Acked-by: Joe Hershberger <joe.hershberger@ni.com> Signed-off-by: Anatolij Gustschin <agust@denx.de>
This commit is contained in:
parent
1a9115ecfe
commit
2300184f70
1 changed files with 3 additions and 1 deletions
|
@ -692,8 +692,10 @@ static int davinci_eth_rcv_packet (struct eth_device *dev)
|
|||
davinci_invalidate_rx_descs();
|
||||
|
||||
rx_curr_desc = emac_rx_active_head;
|
||||
if (!rx_curr_desc)
|
||||
return 0;
|
||||
status = rx_curr_desc->pkt_flag_len;
|
||||
if ((rx_curr_desc) && ((status & EMAC_CPPI_OWNERSHIP_BIT) == 0)) {
|
||||
if ((status & EMAC_CPPI_OWNERSHIP_BIT) == 0) {
|
||||
if (status & EMAC_CPPI_RX_ERROR_FRAME) {
|
||||
/* Error in packet - discard it and requeue desc */
|
||||
printf ("WARN: emac_rcv_pkt: Error in packet\n");
|
||||
|
|
Loading…
Reference in a new issue