aboutsummaryrefslogtreecommitdiff
path: root/scripts/parse_kconfig/boolexpr.h
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/boolexpr.h
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/boolexpr.h')
-rw-r--r--scripts/parse_kconfig/boolexpr.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/parse_kconfig/boolexpr.h b/scripts/parse_kconfig/boolexpr.h
index 52cd4a6..5a368bf 100644
--- a/scripts/parse_kconfig/boolexpr.h
+++ b/scripts/parse_kconfig/boolexpr.h
@@ -20,11 +20,13 @@ struct boolexpr {
unsigned overusage;
};
-struct boolexpr *boolexpr_kconfig(struct symlist *sl, struct expr *expr);
+struct boolexpr *boolexpr_kconfig(struct symlist *sl, struct expr *expr,
+ bool modulesym);
struct boolexpr *boolexpr_true();
struct boolexpr *boolexpr_false();
-struct boolexpr *boolexpr_sym(struct symlist *sl, struct symbol *sym);
+struct boolexpr *boolexpr_sym(struct symlist *sl, struct symbol *sym,
+ bool modulesym);
struct boolexpr *boolexpr_or(struct boolexpr *e1, struct boolexpr *e2);
struct boolexpr *boolexpr_and(struct boolexpr *e1, struct boolexpr *e2);
struct boolexpr *boolexpr_not(struct boolexpr *e);