SAM Ethernet: Eliminate a warning
This commit is contained in:
parent
596dbc20ef
commit
fb44a97359
@ -918,6 +918,9 @@ static int sam_recvframe(struct sam_emac_s *priv)
|
||||
dev = &priv->dev;
|
||||
dev->d_len = 0;
|
||||
|
||||
dest = dev->d_buf;
|
||||
pktlen = 0;
|
||||
|
||||
rxndx = priv->rxndx;
|
||||
rxdesc = &priv->rxdesc[rxndx];
|
||||
isframe = false;
|
||||
|
@ -929,6 +929,9 @@ static int sam_recvframe(struct sam_emac_s *priv)
|
||||
dev = &priv->dev;
|
||||
dev->d_len = 0;
|
||||
|
||||
dest = dev->d_buf;
|
||||
pktlen = 0;
|
||||
|
||||
rxndx = priv->rxndx;
|
||||
rxdesc = &priv->rxdesc[rxndx];
|
||||
isframe = false;
|
||||
|
@ -1251,6 +1251,9 @@ static int sam_recvframe(struct sam_emac_s *priv)
|
||||
dev = &priv->dev;
|
||||
dev->d_len = 0;
|
||||
|
||||
dest = dev->d_buf;
|
||||
pktlen = 0;
|
||||
|
||||
rxndx = priv->rxndx;
|
||||
rxdesc = &priv->rxdesc[rxndx];
|
||||
isframe = false;
|
||||
|
@ -861,6 +861,9 @@ static int sam_recvframe(struct sam_gmac_s *priv)
|
||||
dev = &priv->dev;
|
||||
dev->d_len = 0;
|
||||
|
||||
dest = dev->d_buf;
|
||||
pktlen = 0;
|
||||
|
||||
rxndx = priv->rxndx;
|
||||
rxdesc = &priv->rxdesc[rxndx];
|
||||
isframe = false;
|
||||
|
Loading…
Reference in New Issue
Block a user