mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-14 21:10:27 +01:00
mpc8220/fec.c: Fix GCC 4.6 build warning
Fix: fec.c: In function 'mpc8220_fec_recv': fec.c:733:8: warning: variable 'frame' set but not used [-Wunused-but-set-variable] Signed-off-by: Wolfgang Denk <wd@denx.de>
This commit is contained in:
parent
e8260cb25a
commit
50f87ca556
1 changed files with 3 additions and 3 deletions
|
|
@ -772,8 +772,8 @@ static int mpc8220_fec_recv (struct eth_device *dev)
|
|||
frame = (NBUF *) pRbd->dataPointer;
|
||||
frame_length = pRbd->dataLength - 4;
|
||||
|
||||
#if (0)
|
||||
{
|
||||
/* DEBUG code */
|
||||
if (_DEBUG) {
|
||||
int i;
|
||||
|
||||
printf ("recv data hdr:");
|
||||
|
|
@ -781,7 +781,7 @@ static int mpc8220_fec_recv (struct eth_device *dev)
|
|||
printf ("%x ", *(frame->head + i));
|
||||
printf ("\n");
|
||||
}
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Fill the buffer and pass it to upper layers
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue