SWDEV-281658 - Preserve the callback IDs enum ordering

Use continue instead of break to make sure we process the
whole hip_runtime_api.h file.

Change-Id: Ied2a8df69ed9eb1dc04d6b2d0d7b117ce2a2b6b3
Tento commit je obsažen v:
Christophe Paquot
2021-07-19 15:54:48 -07:00
rodič 223c0364f8
revize 9a510f1cf1
2 změnil soubory, kde provedl 1256 přidání a 131 odebrání
Rozdílový obsah nebyl zobrazen, protože je příliš veliký Načíst rozdílové porovnání
+1 -1
Zobrazit soubor
@@ -178,7 +178,7 @@ def parse_api(inp_file_p, out):
m = api_pattern.match(record)
if m:
found = 0
if end_pattern.search(record): break
if end_pattern.search(record): continue
api_name = filtr_api_name(m.group(2))
api_args = m.group(3)
if not api_name in out: