diff options
| author | Mike Frysinger <vapier@gentoo.org> | 2009-02-17 00:00:53 -0500 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2009-03-20 22:39:09 +0100 | 
| commit | b6446b67758ea1e41223f0782924bb73fd0a89d0 (patch) | |
| tree | 6d96ce0bb34d3be4f09de423721095c1c6b8b1aa /net/nfs.c | |
| parent | 6c6166f52983dac775e3852f9d0f49d033f27108 (diff) | |
| download | olio-uboot-2014.01-b6446b67758ea1e41223f0782924bb73fd0a89d0.tar.xz olio-uboot-2014.01-b6446b67758ea1e41223f0782924bb73fd0a89d0.zip | |
convert print_IPaddr() to %pI4
Now that our printf functions support the %pI4 modifier like the kernel,
let's drop the inflexible print_IPaddr() function and covert over to the
%pI4 modifier.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
CC: Ben Warren <biggerbadderben@gmail.com>
Diffstat (limited to 'net/nfs.c')
| -rw-r--r-- | net/nfs.c | 10 | 
1 files changed, 4 insertions, 6 deletions
| @@ -741,18 +741,16 @@ NfsStart (void)  	printf ("Using %s device\n", eth_get_name());  #endif -	puts ("File transfer via NFS from server "); print_IPaddr (NfsServerIP); -	puts ("; our IP address is ");		    print_IPaddr (NetOurIP); +	printf("File transfer via NFS from server %pI4" +		"; our IP address is %pI4", &NfsServerIP, &NetOurIP);  	/* Check if we need to send across this subnet */  	if (NetOurGatewayIP && NetOurSubnetMask) {  		IPaddr_t OurNet	    = NetOurIP	  & NetOurSubnetMask;  		IPaddr_t ServerNet  = NetServerIP & NetOurSubnetMask; -		if (OurNet != ServerNet) { -			puts ("; sending through gateway "); -			print_IPaddr (NetOurGatewayIP) ; -		} +		if (OurNet != ServerNet) +			printf("; sending through gateway %pI4", &NetOurGatewayIP);  	}  	printf ("\nFilename '%s/%s'.", nfs_path, nfs_filename); |