]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
net: Make sure IPaddr_t is 32 bits in size
authorMatthias Weisser <weisserm@arcor.de>
Sat, 3 Dec 2011 03:29:44 +0000 (03:29 +0000)
committerWolfgang Denk <wd@denx.de>
Tue, 6 Dec 2011 21:15:32 +0000 (22:15 +0100)
commitea45cb0adcf4baa8f939fea4c848f3e1906f19d9
treed7aefd5f7baa6fcc46c7ac046a133c5d44ee7f78
parent7f79c6f2f447fbac1a78d76912ba53afce598ce6
net: Make sure IPaddr_t is 32 bits in size

When building u-boot as 64 bit application (e.g. sandbox) ulong might be
64 bits in size. This breaks network code as IPaddr_t is 64 bytes in
size then and an IPv4 address is 32 bits in size. This patch makes sure
that IPaddr_t is always 32 bits in size. Also some warnings introduced
by this patch are fixed.

Signed-off-by: Matthias Weisser <weisserm@arcor.de>
Acked-by: Mike Frysinger <vapier@gentoo.org>
include/net.h
net/net.c
net/nfs.c
net/tftp.c