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