scripts: kernel-doc: Restore anonymous enum parsing

The commit d38c8cfb05 ("scripts: kernel-doc: add support for typedef enum")
broke anonymous enum parsing. Restore it by relying on members rather than
its name.

Fixes: d38c8cfb05 ("scripts: kernel-doc: add support for typedef enum")
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Cc: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Link: https://lore.kernel.org/r/20201102170637.36138-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
This commit is contained in:
Andy Shevchenko 2020-11-02 19:06:37 +02:00 committed by Jonathan Corbet
parent b65f3a9d6c
commit ae5b17e464
1 changed files with 1 additions and 1 deletions

View File

@ -1390,7 +1390,7 @@ sub dump_enum($$) {
$members = $2;
}
if ($declaration_name) {
if ($members) {
my %_members;
$members =~ s/\s+$//;