diff mbox series

[v2,4/6] uboot_env: remove unused parameters

Message ID 20220308085352.183941-5-gary.bisson@boundarydevices.com
State Accepted
Headers show
Series [v2,1/6] uboot_env: switch to strchr/strrchr | expand

Commit Message

Gary Bisson March 8, 2022, 8:53 a.m. UTC
Signed-off-by: Gary Bisson <gary.bisson@boundarydevices.com>
---
Changelog v1->v2:
- None
---
 src/uboot_env.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
diff mbox series

Patch

diff --git a/src/uboot_env.c b/src/uboot_env.c
index 9993142..d83ca96 100644
--- a/src/uboot_env.c
+++ b/src/uboot_env.c
@@ -134,7 +134,7 @@  static struct var_entry *__libuboot_get_env(struct vars *envs, const char *varna
 	return NULL;
 }
 
-static void free_var_entry(struct vars *envs, struct var_entry *entry)
+static void free_var_entry(struct var_entry *entry)
 {
 	if (entry) {
 		LIST_REMOVE(entry, next);
@@ -150,7 +150,7 @@  static void remove_var(struct vars *envs, const char *varname)
 
 	entry = __libuboot_get_env(envs, varname);
 
-	free_var_entry(envs, entry);
+	free_var_entry(entry);
 }
 
 static enum device_type get_device_type(char *device)
@@ -347,7 +347,7 @@  static int normalize_device_path(char *path, struct uboot_flash_env *dev)
 	return 0;
 }
 
-static int check_env_device(struct uboot_ctx *ctx, struct uboot_flash_env *dev)
+static int check_env_device(struct uboot_flash_env *dev)
 {
 	int fd, ret;
 	struct stat st;
@@ -1254,7 +1254,7 @@  int libuboot_read_config(struct uboot_ctx *ctx, const char *config)
 			free(tmp);
 		}
 
-		if (check_env_device(ctx, dev) < 0) {
+		if (check_env_device(dev) < 0) {
 			retval = -EINVAL;
 			break;
 		}
@@ -1350,7 +1350,7 @@  int libuboot_set_env(struct uboot_ctx *ctx, const char *varname, const char *val
 	if (entry) {
 		if (libuboot_validate_flags(entry, value)) {
 			if (!value) {
-				free_var_entry(envs, entry);
+				free_var_entry(entry);
 			} else {
 				free(entry->value);
 				entry->value = strdup(value);
@@ -1449,7 +1449,7 @@  int libuboot_configure(struct uboot_ctx *ctx,
 			if (!ctx->size)
 				ctx->size = dev->envsize;
 
-			if (check_env_device(ctx, dev) < 0)
+			if (check_env_device(dev) < 0)
 				return -EINVAL;
 
 			if (i > 0) {