aboutsummaryrefslogtreecommitdiff
path: root/scripts/parse_kconfig/symlist.c
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2015-04-29 10:17:05 +0200
committerKarel Kočí <cynerd@email.cz>2015-04-29 10:17:05 +0200
commit94a0f92e1a36d68c95781e916a94a377b7081d2f (patch)
tree261b819f6dba3cb34e5a4b2828a57218720f32fd /scripts/parse_kconfig/symlist.c
parentd98525920581e908604bedf91c50def0024e0b59 (diff)
downloadlinux-conf-perf-94a0f92e1a36d68c95781e916a94a377b7081d2f.tar.gz
linux-conf-perf-94a0f92e1a36d68c95781e916a94a377b7081d2f.tar.bz2
linux-conf-perf-94a0f92e1a36d68c95781e916a94a377b7081d2f.zip
Add prompt variable to parse_kconfig
Diffstat (limited to 'scripts/parse_kconfig/symlist.c')
-rw-r--r--scripts/parse_kconfig/symlist.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/parse_kconfig/symlist.c b/scripts/parse_kconfig/symlist.c
index c6e5140..b0b90ea 100644
--- a/scripts/parse_kconfig/symlist.c
+++ b/scripts/parse_kconfig/symlist.c
@@ -19,6 +19,7 @@ void symlist_add(struct symlist *sl, char *name) {
sl->array[sl->pos].name = name;
sl->array[sl->pos].be = NULL;
sl->array[sl->pos].prompt = false;
+ sl->array[sl->pos].def = true;
sl->pos++;
}