From: Daniel Golle <daniel@makrotopia.org>
Date: Thu, 24 Mar 2022 02:56:01 +0000 (+0000)
Subject: kernel: generic: fix warning in FIT partition parser
X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=d3a4607fc61f890d5d4bedef6e542046038294d9;p=openwrt%2Fstaging%2Fjogo.git

kernel: generic: fix warning in FIT partition parser

Use 'const char *' where necessary to make gcc get quiet.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
---

diff --git a/target/linux/generic/files/block/partitions/fit.c b/target/linux/generic/files/block/partitions/fit.c
index f6f15f538a..75516af493 100644
--- a/target/linux/generic/files/block/partitions/fit.c
+++ b/target/linux/generic/files/block/partitions/fit.c
@@ -89,8 +89,8 @@ int parse_fit_partitions(struct parsed_partitions *state, u64 fit_start_sector,
 	size_t label_min;
 	struct device_node *np = NULL;
 	const char *bootconf;
-	char *loadable;
-	char *select_rootfs = NULL;
+	const char *loadable;
+	const char *select_rootfs = NULL;
 	bool found;
 	int loadables_rem_len, loadable_len;