summaryrefslogtreecommitdiffstats
path: root/scripts/kconfig/symbol.c
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2019-08-08 01:06:48 +0900
committerSascha Hauer <s.hauer@pengutronix.de>2019-08-12 08:59:27 +0200
commit21e5652f989d2df9a1722698b2d5f9257c6c4c3b (patch)
tree399c82bd978995a06c15dd126a098d4ac2c60a5c /scripts/kconfig/symbol.c
parent1f5e9d331548ee02322511365a00a142bdf15f4d (diff)
downloadbarebox-21e5652f989d2df9a1722698b2d5f9257c6c4c3b.tar.gz
barebox-21e5652f989d2df9a1722698b2d5f9257c6c4c3b.tar.xz
kconfig: update to Linux 5.3-rc3
Recently, Linux merged some important fixes. Commit 8e2442a5f86e ("kconfig: fix missing choice values in auto.conf") Commit 0c5b6c28ed68 ("kconfig: Clear "written" flag to avoid data loss") Barebox must import them. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'scripts/kconfig/symbol.c')
-rw-r--r--scripts/kconfig/symbol.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/kconfig/symbol.c b/scripts/kconfig/symbol.c
index 1f9266dade..f56eec5ea4 100644
--- a/scripts/kconfig/symbol.c
+++ b/scripts/kconfig/symbol.c
@@ -785,7 +785,7 @@ const char *sym_get_string_value(struct symbol *sym)
return (const char *)sym->curr.val;
}
-bool sym_is_changable(struct symbol *sym)
+bool sym_is_changeable(struct symbol *sym)
{
return sym->visible > sym->rev_dep.tri;
}
@@ -1114,7 +1114,7 @@ static void sym_check_print_recursive(struct symbol *last_sym)
}
fprintf(stderr,
- "For a resolution refer to Documentation/kbuild/kconfig-language.txt\n"
+ "For a resolution refer to Documentation/kbuild/kconfig-language.rst\n"
"subsection \"Kconfig recursive dependency limitations\"\n"
"\n");