diff options
author | Jerome Forissier <jerome.forissier@linaro.org> | 2025-03-21 13:42:14 +0100 |
---|---|---|
committer | Jerome Forissier <jerome.forissier@linaro.org> | 2025-03-31 09:46:25 +0200 |
commit | 36510e4e41fdcb3188f44cd53d48c6e0c67c236a (patch) | |
tree | 0ea34ab05cc35e62c98c272ac86528076d0b667f | |
parent | 42df30a210c07c020b96a1d13d066125bd5f0ffd (diff) |
net: remove commented out line
Commit 1d5d292b7941 ("net: split net into net{,-common,-legacy,-lwip}")
inadvertendly left a commented out declaration for do_wget() in
net-common.h. Remove it.
Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org>
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
-rw-r--r-- | include/net-common.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/net-common.h b/include/net-common.h index 29d31f37263..89679e20860 100644 --- a/include/net-common.h +++ b/include/net-common.h @@ -518,7 +518,6 @@ int wget_do_request(ulong dst_addr, char *uri); * Return: true if uri is valid, false if uri is invalid */ bool wget_validate_uri(char *uri); -//int do_wget(struct cmd_tbl *cmdtp, int flag, int argc, char * const argv[]); /** * enum wget_http_method - http method |