diff options
author | Michal Marek <mmarek@suse.cz> | 2015-02-24 10:37:13 -0500 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2015-02-25 09:00:17 -0500 |
commit | ad8d40cda3ad22ad9e8863d55a5c88f85c0173f0 (patch) | |
tree | dda16c06e987fb9ac7177ea58fa88957cbe46f0f /scripts/kconfig/expr.h | |
parent | 463157444e377bf9b279101b1f16a94c4648c03a (diff) |
kconfig: Remove unnecessary prototypes from headers
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts/kconfig/expr.h')
-rw-r--r-- | scripts/kconfig/expr.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/scripts/kconfig/expr.h b/scripts/kconfig/expr.h index 412ea8a2abb8..a2fc96a2bd2c 100644 --- a/scripts/kconfig/expr.h +++ b/scripts/kconfig/expr.h | |||
@@ -205,18 +205,13 @@ struct expr *expr_alloc_and(struct expr *e1, struct expr *e2); | |||
205 | struct expr *expr_alloc_or(struct expr *e1, struct expr *e2); | 205 | struct expr *expr_alloc_or(struct expr *e1, struct expr *e2); |
206 | struct expr *expr_copy(const struct expr *org); | 206 | struct expr *expr_copy(const struct expr *org); |
207 | void expr_free(struct expr *e); | 207 | void expr_free(struct expr *e); |
208 | int expr_eq(struct expr *e1, struct expr *e2); | ||
209 | void expr_eliminate_eq(struct expr **ep1, struct expr **ep2); | 208 | void expr_eliminate_eq(struct expr **ep1, struct expr **ep2); |
210 | tristate expr_calc_value(struct expr *e); | 209 | tristate expr_calc_value(struct expr *e); |
211 | struct expr *expr_eliminate_yn(struct expr *e); | ||
212 | struct expr *expr_trans_bool(struct expr *e); | 210 | struct expr *expr_trans_bool(struct expr *e); |
213 | struct expr *expr_eliminate_dups(struct expr *e); | 211 | struct expr *expr_eliminate_dups(struct expr *e); |
214 | struct expr *expr_transform(struct expr *e); | 212 | struct expr *expr_transform(struct expr *e); |
215 | int expr_contains_symbol(struct expr *dep, struct symbol *sym); | 213 | int expr_contains_symbol(struct expr *dep, struct symbol *sym); |
216 | bool expr_depends_symbol(struct expr *dep, struct symbol *sym); | 214 | bool expr_depends_symbol(struct expr *dep, struct symbol *sym); |
217 | struct expr *expr_extract_eq_and(struct expr **ep1, struct expr **ep2); | ||
218 | struct expr *expr_extract_eq_or(struct expr **ep1, struct expr **ep2); | ||
219 | void expr_extract_eq(enum expr_type type, struct expr **ep, struct expr **ep1, struct expr **ep2); | ||
220 | struct expr *expr_trans_compare(struct expr *e, enum expr_type type, struct symbol *sym); | 215 | struct expr *expr_trans_compare(struct expr *e, enum expr_type type, struct symbol *sym); |
221 | struct expr *expr_simplify_unmet_dep(struct expr *e1, struct expr *e2); | 216 | struct expr *expr_simplify_unmet_dep(struct expr *e1, struct expr *e2); |
222 | 217 | ||