From: Arnaud Lacombe Date: Wed, 1 Jun 2011 20:15:52 +0000 (-0400) Subject: kconfig: nuke reference to SWIG X-Git-Tag: next-20110726~48^2~17^2^2~3 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=84250386efa581fdf5578b68b9dd6b79998ac48d;p=karo-tx-linux.git kconfig: nuke reference to SWIG SWIG is not used (yet?) to create kconfig binding, so there is no point referencing it. Signed-off-by: Arnaud Lacombe --- diff --git a/scripts/kconfig/expr.h b/scripts/kconfig/expr.h index 16bfae2d3217..80fce57080cc 100644 --- a/scripts/kconfig/expr.h +++ b/scripts/kconfig/expr.h @@ -172,8 +172,6 @@ struct menu { #define MENU_CHANGED 0x0001 #define MENU_ROOT 0x0002 -#ifndef SWIG - extern struct file *file_list; extern struct file *current_file; struct file *lookup_file(const char *name); @@ -218,7 +216,6 @@ static inline int expr_is_no(struct expr *e) { return e && (e->type == E_SYMBOL && e->left.sym == &symbol_no); } -#endif #ifdef __cplusplus }