mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-09 03:21:51 +00:00
Cleanup for GCC-4.x
This commit is contained in:
parent
17a8b276ba
commit
77ddac9480
201 changed files with 606 additions and 587 deletions
|
@ -810,6 +810,7 @@ static ushort CDP_compute_csum(const uchar *buff, ushort len)
|
|||
int odd;
|
||||
ulong result = 0;
|
||||
ushort leftover;
|
||||
ushort *p;
|
||||
|
||||
if (len > 0) {
|
||||
odd = 1 & (ulong)buff;
|
||||
|
@ -819,7 +820,9 @@ static ushort CDP_compute_csum(const uchar *buff, ushort len)
|
|||
buff++;
|
||||
}
|
||||
while (len > 1) {
|
||||
result += *((const ushort *)buff)++;
|
||||
p = (ushort *)buff;
|
||||
result += *p++;
|
||||
buff = (uchar *)p;
|
||||
if (result & 0x80000000)
|
||||
result = (result & 0xFFFF) + (result >> 16);
|
||||
len -= 2;
|
||||
|
@ -1655,7 +1658,7 @@ NetSetIP(volatile uchar * xip, IPaddr_t dest, int dport, int sport, int len)
|
|||
ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2);
|
||||
}
|
||||
|
||||
void copy_filename (uchar *dst, uchar *src, int size)
|
||||
void copy_filename (char *dst, char *src, int size)
|
||||
{
|
||||
if (*src && (*src == '"')) {
|
||||
++src;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue