From: Eric Anholt Date: Thu, 28 Dec 2017 21:51:36 +0000 (-0800) Subject: broadcom/cle: Fix error path of missing a "type" in the XML. X-Git-Url: https://git.libre-soc.org/?p=mesa.git;a=commitdiff_plain;h=7dedfd9660779c11110aaffdf2a7a85da628ac52 broadcom/cle: Fix error path of missing a "type" in the XML. We try to emit a #error and continue so that you can debug the missing type at C compile time, but were missing a couple of definitions in that path (sigh, python). --- diff --git a/src/broadcom/cle/gen_pack_header.py b/src/broadcom/cle/gen_pack_header.py index a23b69b6758..e5762762b23 100644 --- a/src/broadcom/cle/gen_pack_header.py +++ b/src/broadcom/cle/gen_pack_header.py @@ -166,6 +166,7 @@ class Field(object): return else: print("#error unhandled type: %s" % self.type) + type = "uint32_t" print(" %-36s %s%s;" % (type, self.name, dim)) @@ -362,7 +363,7 @@ class Group(object): args.append(str(field.fractional_size)) convert = "__gen_unpack_sfixed" else: - print("/* unhandled field %s, type %s */\n" % (name, field.type)) + print("/* unhandled field %s, type %s */\n" % (field.name, field.type)) s = None print(" values->%s = %s(%s);" % \