diff options
| author | Trevor Keith <[email protected]> | 2009-09-18 19:49:23 +0000 |
|---|---|---|
| committer | Sam Ravnborg <[email protected]> | 2009-09-20 10:27:44 +0000 |
| commit | 4356f4890792a678936c93c9196e8f7742e04535 (patch) | |
| tree | 6c64cbb77de98dfc45e4330632e6f8b27f50ef04 /scripts/kconfig/expr.c | |
| parent | kbuild: fail build if recordmcount.pl fails (diff) | |
| download | kernel-4356f4890792a678936c93c9196e8f7742e04535.tar.gz kernel-4356f4890792a678936c93c9196e8f7742e04535.zip | |
kbuild: add static to prototypes
Warnings found via gcc -Wmissing-prototypes.
Signed-off-by: Trevor Keith <[email protected]>
Acked-by: WANG Cong <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Sam Ravnborg <[email protected]>
Diffstat (limited to 'scripts/kconfig/expr.c')
| -rw-r--r-- | scripts/kconfig/expr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/kconfig/expr.c b/scripts/kconfig/expr.c index cd8a2f00a97e..edd3f39a080a 100644 --- a/scripts/kconfig/expr.c +++ b/scripts/kconfig/expr.c @@ -348,7 +348,7 @@ struct expr *expr_trans_bool(struct expr *e) /* * e1 || e2 -> ? */ -struct expr *expr_join_or(struct expr *e1, struct expr *e2) +static struct expr *expr_join_or(struct expr *e1, struct expr *e2) { struct expr *tmp; struct symbol *sym1, *sym2; @@ -412,7 +412,7 @@ struct expr *expr_join_or(struct expr *e1, struct expr *e2) return NULL; } -struct expr *expr_join_and(struct expr *e1, struct expr *e2) +static struct expr *expr_join_and(struct expr *e1, struct expr *e2) { struct expr *tmp; struct symbol *sym1, *sym2; |
