drivers: replace NIPQUAD()
Using NIPQUAD() with NIPQUAD_FMT, %d.%d.%d.%d or %u.%u.%u.%u can be replaced with %pI4 Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
21454aaad3
commit
63779436ab
@ -284,8 +284,7 @@ static ssize_t sprintf_ipaddr(char *buf, u8 *ip)
|
||||
/*
|
||||
* IPV4
|
||||
*/
|
||||
str += sprintf(buf, NIPQUAD_FMT, ip[12],
|
||||
ip[13], ip[14], ip[15]);
|
||||
str += sprintf(buf, "%pI4", ip + 12);
|
||||
} else {
|
||||
/*
|
||||
* IPv6
|
||||
|
Reference in New Issue
Block a user