diff mbox series

[v3,03/13] examples: api: glue: Remove comment that does not apply anymore

Message ID 20211017153638.29870-4-kabel@kernel.org
State Accepted
Commit 6aa652d008398fa7db99b7d570bc6f0123dcd9b5
Delegated to: Simon Glass
Headers show
Series env_get_char() removal and env_get_f() refactor | expand

Commit Message

Marek Behún Oct. 17, 2021, 3:36 p.m. UTC
From: Marek Behún <marek.behun@nic.cz>

This comment is not true since commit 6215bd4c1fd6 ("api: Use hashtable
function for API_env_enum").

Signed-off-by: Marek Behún <marek.behun@nic.cz>
Reviewed-by: Simon Glass <sjg@chromium.org>
---
 examples/api/glue.c | 5 -----
 1 file changed, 5 deletions(-)

Comments

Simon Glass Oct. 21, 2021, 6:49 p.m. UTC | #1
From: Marek Behún <marek.behun@nic.cz>

This comment is not true since commit 6215bd4c1fd6 ("api: Use hashtable
function for API_env_enum").

Signed-off-by: Marek Behún <marek.behun@nic.cz>
Reviewed-by: Simon Glass <sjg@chromium.org>
---
 examples/api/glue.c | 5 -----
 1 file changed, 5 deletions(-)

Applied to u-boot-dm, thanks!
diff mbox series

Patch

diff --git a/examples/api/glue.c b/examples/api/glue.c
index 91d13157a1..075d307ae2 100644
--- a/examples/api/glue.c
+++ b/examples/api/glue.c
@@ -365,11 +365,6 @@  const char * ub_env_enum(const char *last)
 
 	env = NULL;
 
-	/*
-	 * It's OK to pass only the name piece as last (and not the whole
-	 * 'name=val' string), since the API_ENUM_ENV call uses env_match()
-	 * internally, which handles such case
-	 */
 	if (!syscall(API_ENV_ENUM, NULL, last, &env))
 		return NULL;