Fix drivers/dm9000.c when configured in 32 bit mode.

Patch by Eric Benard, 17 Nov 2005
This commit is contained in:
Wolfgang Denk 2006-08-14 21:18:21 +02:00
parent c72d9c5285
commit d689e3462c
2 changed files with 6 additions and 0 deletions

View File

@ -2,6 +2,9 @@
Changes since U-Boot 1.1.4: Changes since U-Boot 1.1.4:
====================================================================== ======================================================================
* Fix drivers/dm9000.c when configured in 32 bit mode.
Patch by Eric Benard, 17 Nov 2005
* Fix control-c handing in CONFIG_CMDLINE_EDITING * Fix control-c handing in CONFIG_CMDLINE_EDITING
Properly pass break code back from readline. Properly pass break code back from readline.
Patch by Roger Blofeld, 31 Jul 2006 Patch by Roger Blofeld, 31 Jul 2006

View File

@ -436,6 +436,9 @@ eth_rx(void)
u8 rxbyte, *rdptr = (u8 *) NetRxPackets[0]; u8 rxbyte, *rdptr = (u8 *) NetRxPackets[0];
u16 RxStatus, RxLen = 0; u16 RxStatus, RxLen = 0;
u32 tmplen, i; u32 tmplen, i;
#ifdef CONFIG_DM9000_USE_32BIT
u32 tmpdata;
#endif
/* Check packet ready or not */ /* Check packet ready or not */
DM9000_ior(DM9000_MRCMDX); /* Dummy read */ DM9000_ior(DM9000_MRCMDX); /* Dummy read */