qmic: Add missing string type in structs

Structs can contain strings, we still don't encode and decode these but
this change makes the generated header file compilable.

Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
This commit is contained in:
Bjorn Andersson
2016-06-02 10:25:01 -07:00
parent 0b09df395a
commit 1ef360e6ae

View File

@@ -7,6 +7,7 @@ static const char *sz_simple_types[] = {
[TYPE_U16] = "uint16_t",
[TYPE_U32] = "uint32_t",
[TYPE_U64] = "uint64_t",
[TYPE_STRING] = "char *",
};
struct qmi_struct_member {