system/cfgdata: fix compilation when MTD_CONFIG_NAMED is enabled

Signed-off-by: Petro Karashchenko <petro.karashchenko@gmail.com>
This commit is contained in:
Petro Karashchenko 2022-03-19 00:04:14 +01:00 committed by Xiang Xiao
parent 2d8798d260
commit 29cc338dac

View File

@ -234,6 +234,7 @@ static void cfgdatacmd_set(int argc, char *argv[])
{
int ret;
int fd;
int x;
struct config_data_s cfg;
uint8_t data[32];
@ -244,7 +245,6 @@ static void cfgdatacmd_set(int argc, char *argv[])
strncpy(cfg.name, argv[2], CONFIG_MTD_CONFIG_NAME_LEN);
#else
int x;
/* Parse the id and instance */
@ -427,9 +427,10 @@ static void cfgdatacmd_unset(int argc, char *argv[])
static void cfgdatacmd_print(int argc, char *argv[])
{
struct config_data_s cfg;
int ret;
int fd;
int x;
struct config_data_s cfg;
bool isstring;
#ifdef CONFIG_MTD_CONFIG_NAMED
@ -439,7 +440,6 @@ static void cfgdatacmd_print(int argc, char *argv[])
strncpy(cfg.name, argv[2], CONFIG_MTD_CONFIG_NAME_LEN);
#else
int x;
/* Parse the id and instance */
@ -536,8 +536,9 @@ static void cfgdatacmd_print(int argc, char *argv[])
static void cfgdatacmd_show_all_config_items(void)
{
int ret;
int fd;
int ret, x;
int x;
struct config_data_s cfg;
char fmtstr[24];
bool isstring;