aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/kconfig/expr.h
diff options
context:
space:
mode:
authorMichal Marek <mmarek@suse.cz>2010-12-20 16:06:44 +0100
committerMichal Marek <mmarek@suse.cz>2010-12-21 17:59:16 +0100
commit17742dc743716eebbf5892add0e0bf91f541fc39 (patch)
treea59b7e4bf8e1a23c6f28410bd0dd941125a68c8a /scripts/kconfig/expr.h
parentkconfig: simplify select-with-unmet-direct-dependency warning (diff)
downloadlinux-dev-17742dc743716eebbf5892add0e0bf91f541fc39.tar.xz
linux-dev-17742dc743716eebbf5892add0e0bf91f541fc39.zip
kconfig: Make expr_copy() take a const argument
Fixes scripts/kconfig/expr.c: In function ‘expr_get_leftmost_symbol’: scripts/kconfig/expr.c:1026:2: warning: passing argument 1 of ‘expr_copy’ discards qualifiers from pointer target type scripts/kconfig/expr.c:67:14: note: expected ‘struct expr *’ but argument is of type ‘const struct expr *’ Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to '')
-rw-r--r--scripts/kconfig/expr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/expr.h b/scripts/kconfig/expr.h
index 184eb6a0b505..218991b26d92 100644
--- a/scripts/kconfig/expr.h
+++ b/scripts/kconfig/expr.h
@@ -191,7 +191,7 @@ struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e
struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2);
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(struct expr *org);
+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);