kernel-doc: move ignoring kmemcheck

Somehow I managed to generate a diff that put these 2 lines
into the wrong function: should have been in dump_struct()
instead of in dump_enum().

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by Randy Dunlap and committed by Linus Torvalds d960eea9 5c5d4e8e

+2 -2
+2 -2
scripts/kernel-doc
··· 1426 # strip comments: 1427 $members =~ s/\/\*.*?\*\///gos; 1428 $nested =~ s/\/\*.*?\*\///gos; 1429 1430 create_parameterlist($members, ';', $file); 1431 check_sections($file, $declaration_name, "struct", $sectcheck, $struct_actual, $nested); ··· 1470 } 1471 1472 } 1473 - # strip kmemcheck_bitfield_{begin,end}.*; 1474 - $members =~ s/kmemcheck_bitfield_.*?;//gos; 1475 1476 output_declaration($declaration_name, 1477 'enum',
··· 1426 # strip comments: 1427 $members =~ s/\/\*.*?\*\///gos; 1428 $nested =~ s/\/\*.*?\*\///gos; 1429 + # strip kmemcheck_bitfield_{begin,end}.*; 1430 + $members =~ s/kmemcheck_bitfield_.*?;//gos; 1431 1432 create_parameterlist($members, ';', $file); 1433 check_sections($file, $declaration_name, "struct", $sectcheck, $struct_actual, $nested); ··· 1468 } 1469 1470 } 1471 1472 output_declaration($declaration_name, 1473 'enum',