Commit de83cf14 authored by Sam Ravnborg's avatar Sam Ravnborg

kconfig: delete unused FILE_ and SYMBOL_ flags

The *_PRINTED flags were never used - so delete them.
Do we need them later then we can re-add them.
Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
Cc: Roman Zippel <zippel@linux-m68k.org>
parent d6ee3576
...@@ -25,7 +25,6 @@ struct file { ...@@ -25,7 +25,6 @@ struct file {
#define FILE_BUSY 0x0001 #define FILE_BUSY 0x0001
#define FILE_SCANNED 0x0002 #define FILE_SCANNED 0x0002
#define FILE_PRINTED 0x0004
typedef enum tristate { typedef enum tristate {
no, mod, yes no, mod, yes
...@@ -86,7 +85,6 @@ struct symbol { ...@@ -86,7 +85,6 @@ struct symbol {
#define SYMBOL_CHECK 0x0008 #define SYMBOL_CHECK 0x0008
#define SYMBOL_CHOICE 0x0010 #define SYMBOL_CHOICE 0x0010
#define SYMBOL_CHOICEVAL 0x0020 #define SYMBOL_CHOICEVAL 0x0020
#define SYMBOL_PRINTED 0x0040
#define SYMBOL_VALID 0x0080 #define SYMBOL_VALID 0x0080
#define SYMBOL_OPTIONAL 0x0100 #define SYMBOL_OPTIONAL 0x0100
#define SYMBOL_WRITE 0x0200 #define SYMBOL_WRITE 0x0200
......
...@@ -119,8 +119,6 @@ const char *dbg_print_flags(int val) ...@@ -119,8 +119,6 @@ const char *dbg_print_flags(int val)
strcat(buf, "choice/"); strcat(buf, "choice/");
if (val & SYMBOL_CHOICEVAL) if (val & SYMBOL_CHOICEVAL)
strcat(buf, "choiceval/"); strcat(buf, "choiceval/");
if (val & SYMBOL_PRINTED)
strcat(buf, "printed/");
if (val & SYMBOL_VALID) if (val & SYMBOL_VALID)
strcat(buf, "valid/"); strcat(buf, "valid/");
if (val & SYMBOL_OPTIONAL) if (val & SYMBOL_OPTIONAL)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment