limits/path: replace CONFIG_PATH_MAX to PATH_MAX to ensure consistency

replace CONFIG_PATH_MAX to PATH_MAX to ensure consistency

Signed-off-by: chao an <anchao@lixiang.com>
This commit is contained in:
chao an
2024-12-10 12:27:08 +08:00
committed by Xiang Xiao
parent 9b99493e14
commit afca1a819d
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -39,7 +39,7 @@
/* Location of the fdt data for this system. */
static FAR const char *g_fdt_base = NULL;
static FAR const char *g_fdt_base;
/****************************************************************************
* Public Functions
@@ -399,7 +399,7 @@ FAR const char *fdt_get_node_label(FAR const void *fdt, int node)
int ret;
const char *property_name;
const char *label_name;
char path_buffer[CONFIG_PATH_MAX] =
char path_buffer[PATH_MAX] =
{
0
};
@@ -496,7 +496,7 @@ int fdt_node_index_from_label(FAR const char *node_label, int count)
return -ENOENT;
}
label_length = strnlen(node_label, CONFIG_PATH_MAX);
label_length = strnlen(node_label, PATH_MAX);
if (count > label_length || count <= 0)
{