diff options
| author | Masahiro Yamada <masahiroy@kernel.org> | 2024-08-12 20:49:47 +0900 |
|---|---|---|
| committer | Masahiro Yamada <masahiroy@kernel.org> | 2024-09-01 20:34:48 +0900 |
| commit | 96490176f1e11947be2bdd2700075275e2c27310 (patch) | |
| tree | 064e85b82661b65a0afbc31c613c53e47745fd07 /scripts/kconfig/parser.y | |
| parent | 5e6cc7e3f2965fc3df901416336f6bf985a363da (diff) | |
| download | linux-96490176f1e11947be2bdd2700075275e2c27310.tar.gz linux-96490176f1e11947be2bdd2700075275e2c27310.tar.bz2 linux-96490176f1e11947be2bdd2700075275e2c27310.zip | |
kconfig: remove P_SYMBOL property
P_SYMBOL is a pseudo property that was previously used for data linking
purposes.
It is no longer used except for debug prints. Remove it.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/kconfig/parser.y')
| -rw-r--r-- | scripts/kconfig/parser.y | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/scripts/kconfig/parser.y b/scripts/kconfig/parser.y index e03731184840..2d5e5ed56aba 100644 --- a/scripts/kconfig/parser.y +++ b/scripts/kconfig/parser.y @@ -707,10 +707,6 @@ static void print_symbol(FILE *out, const struct menu *menu) print_quoted_string(out, prop->text); fputc('\n', out); break; - case P_SYMBOL: - fputs( " symbol ", out); - fprintf(out, "%s\n", prop->menu->sym->name); - break; default: fprintf(out, " unknown prop %d!\n", prop->type); break; |
