From: Heinrich Schuchardt Date: Tue, 19 Nov 2024 10:09:07 +0000 (+0100) Subject: net: correct the description of ip_to_string() X-Git-Tag: v2025.04-rc1~70^2~6 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dc5ff7443ee58f091e276e30ad84ea6006ee5af6;p=pandora-u-boot.git net: correct the description of ip_to_string() The output of ip_to_string() is a string. Signed-off-by: Heinrich Schuchardt --- diff --git a/include/net-common.h b/include/net-common.h index 8fc1bac47f5..29d31f37263 100644 --- a/include/net-common.h +++ b/include/net-common.h @@ -427,7 +427,7 @@ void string_to_enetaddr(const char *addr, uint8_t *enetaddr); struct in_addr string_to_ip(const char *s); /** - * ip_to_string() - Convert a string to ip address + * ip_to_string() - Convert an IPv4 address to a string * * Implemented in lib/net_utils.c (built unconditionally) *