1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-01 08:42:12 +02:00

Add I2C support to TQM8540 and TQM8560 boards (EEPROM, RTC, LM75-DTT).

Removed CFG_CMD_DISPLAY from default commands.
Fixed compiler warning in net.c.
Patch by Stefan Roese, 31 Aug 2005
This commit is contained in:
Stefan Roese
2005-08-31 12:55:50 +02:00
parent 77f6580cc0
commit 9d2a873bdf
8 changed files with 109 additions and 20 deletions

View File

@@ -1574,7 +1574,7 @@ unsigned
NetCksum(uchar * ptr, int len)
{
ulong xsum;
ushort *p = ptr;
ushort *p = (ushort *)ptr;
xsum = 0;
while (len-- > 0)