diff options
author | Felix Fietkau <nbd@nbd.name> | 2016-08-03 19:47:34 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2016-08-03 20:03:35 +0200 |
commit | 2d7e602381f3c473d6c8214e8e56bcf80ccf9fa5 (patch) | |
tree | 43bc0a7953f008fad5fbc793e8d2dfca2e540081 /scripts/config/expr.h | |
parent | 7bf3695b0230d4cc4b6348f7c87b3c164314db8d (diff) | |
download | upstream-2d7e602381f3c473d6c8214e8e56bcf80ccf9fa5.tar.gz upstream-2d7e602381f3c473d6c8214e8e56bcf80ccf9fa5.tar.bz2 upstream-2d7e602381f3c473d6c8214e8e56bcf80ccf9fa5.zip |
scripts/config: sync with latest linux upstream
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'scripts/config/expr.h')
-rw-r--r-- | scripts/config/expr.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/scripts/config/expr.h b/scripts/config/expr.h index e824bbadeb..d21bbe3b31 100644 --- a/scripts/config/expr.h +++ b/scripts/config/expr.h @@ -29,7 +29,9 @@ typedef enum tristate { } tristate; enum expr_type { - E_NONE, E_OR, E_AND, E_NOT, E_EQUAL, E_UNEQUAL, E_LIST, E_SYMBOL, E_RANGE + E_NONE, E_OR, E_AND, E_NOT, + E_EQUAL, E_UNEQUAL, E_LTH, E_LEQ, E_GTH, E_GEQ, + E_LIST, E_SYMBOL, E_RANGE }; union expr_data { @@ -206,18 +208,13 @@ struct expr *expr_alloc_and(struct expr *e1, struct expr *e2); struct expr *expr_alloc_or(struct expr *e1, struct expr *e2); struct expr *expr_copy(const struct expr *org); void expr_free(struct expr *e); -int expr_eq(struct expr *e1, struct expr *e2); void expr_eliminate_eq(struct expr **ep1, struct expr **ep2); tristate expr_calc_value(struct expr *e); -struct expr *expr_eliminate_yn(struct expr *e); struct expr *expr_trans_bool(struct expr *e); struct expr *expr_eliminate_dups(struct expr *e); struct expr *expr_transform(struct expr *e); int expr_contains_symbol(struct expr *dep, struct symbol *sym); bool expr_depends_symbol(struct expr *dep, struct symbol *sym); -struct expr *expr_extract_eq_and(struct expr **ep1, struct expr **ep2); -struct expr *expr_extract_eq_or(struct expr **ep1, struct expr **ep2); -void expr_extract_eq(enum expr_type type, struct expr **ep, struct expr **ep1, struct expr **ep2); struct expr *expr_trans_compare(struct expr *e, enum expr_type type, struct symbol *sym); struct expr *expr_simplify_unmet_dep(struct expr *e1, struct expr *e2); |