Эх сурвалжийг харах

doc-rst: parse-headers: add an option to ignore enum symbols

At videodev2.h, we have hundreds of symbols that don't
currently have a reference yet. Let's ignore for how, while
we don't improve those cross-refs.

Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Mauro Carvalho Chehab 9 жил өмнө
parent
commit
526b884831

+ 4 - 0
Documentation/sphinx/parse-headers.pl

@@ -163,6 +163,10 @@ if ($file_exceptions) {
 			delete $structs{$1} if (exists($structs{$1}));
 			delete $structs{$1} if (exists($structs{$1}));
 			next;
 			next;
 		}
 		}
+		if (m/^ignore\s+symbol\s+(\S+)/) {
+			delete $enum_symbols{$1} if (exists($enum_symbols{$1}));
+			next;
+		}
 
 
 		# Parsers to replace a symbol
 		# Parsers to replace a symbol