board/esd/cpci405/cpci405.c: Fix compile warning
Fix this: cpci405.c: In function 'do_get_bpip': cpci405.c:737:4: warning: format '%ld' expects type 'long int', but argument 3 has type 'IPaddr_t' cpci405.c:737:4: warning: format '%ld' expects type 'long int', but argument 4 has type 'IPaddr_t' cpci405.c:737:4: warning: format '%ld' expects type 'long int', but argument 5 has type 'IPaddr_t' cpci405.c:737:4: warning: format '%ld' expects type 'long int', but argument 6 has type 'IPaddr_t' cpci405.c:700:8: warning: unused variable 'bd' Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
This commit is contained in:
parent
412411cb2e
commit
9aabb2f88b
@ -697,7 +697,6 @@ U_BOOT_CMD(
|
|||||||
*/
|
*/
|
||||||
int do_get_bpip(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
int do_get_bpip(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
||||||
{
|
{
|
||||||
bd_t *bd = gd->bd;
|
|
||||||
char *buf;
|
char *buf;
|
||||||
ulong crc;
|
ulong crc;
|
||||||
char str[32];
|
char str[32];
|
||||||
@ -730,11 +729,7 @@ int do_get_bpip(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
|||||||
/*
|
/*
|
||||||
* Update whole ip-addr
|
* Update whole ip-addr
|
||||||
*/
|
*/
|
||||||
sprintf(str, "%ld.%ld.%ld.%ld",
|
sprintf(str, "%pI4", &ipaddr);
|
||||||
(ipaddr & 0xff000000) >> 24,
|
|
||||||
(ipaddr & 0x00ff0000) >> 16,
|
|
||||||
(ipaddr & 0x0000ff00) >> 8,
|
|
||||||
(ipaddr & 0x000000ff));
|
|
||||||
setenv("ipaddr", str);
|
setenv("ipaddr", str);
|
||||||
printf("Updated ip_addr from bp_eeprom to %s!\n", str);
|
printf("Updated ip_addr from bp_eeprom to %s!\n", str);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user