aboutsummaryrefslogtreecommitdiff
path: root/scripts/parse_kconfig/symlist.c
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2015-05-04 20:19:57 +0200
committerKarel Kočí <cynerd@email.cz>2015-05-04 20:19:57 +0200
commitd837647515b59137a837c3f67dacfc9b7ad3e981 (patch)
tree434d347b7a8a9320192a5c1480c30f38ab43ebc2 /scripts/parse_kconfig/symlist.c
parente6cd8a42dd9d0be35e9d12a9d6feb329f1ed88a9 (diff)
downloadlinux-conf-perf-d837647515b59137a837c3f67dacfc9b7ad3e981.tar.gz
linux-conf-perf-d837647515b59137a837c3f67dacfc9b7ad3e981.tar.bz2
linux-conf-perf-d837647515b59137a837c3f67dacfc9b7ad3e981.zip
parse_kconfig adding proper visibility dependency
For unknown reasons, output rules with generated default solution are not satisfiable.
Diffstat (limited to 'scripts/parse_kconfig/symlist.c')
-rw-r--r--scripts/parse_kconfig/symlist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/parse_kconfig/symlist.c b/scripts/parse_kconfig/symlist.c
index d38dde1..f81facf 100644
--- a/scripts/parse_kconfig/symlist.c
+++ b/scripts/parse_kconfig/symlist.c
@@ -17,8 +17,8 @@ void symlist_add(struct symlist *sl, char *name) {
realloc(sl->array, sl->size * sizeof(struct symlist_el));
}
sl->array[sl->pos].name = name;
- sl->array[sl->pos].prompt = false;
sl->array[sl->pos].def = NULL;
+ sl->array[sl->pos].vis = NULL;
sl->array[sl->pos].dep = NULL;
sl->array[sl->pos].rev_dep = NULL;
output_push_symbol((unsigned) sl->pos + 1, name);