Commit 32fe0116 authored by Olof Johansson's avatar Olof Johansson

Merge tag 'qcom-drivers-fixes-for-5.9' of...

Merge tag 'qcom-drivers-fixes-for-5.9' of https://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux into arm/fixes

Qualcomm driver fixes for v5.9

Fix the array type of the domain_list QMI response in PDR.

* tag 'qcom-drivers-fixes-for-5.9' of https://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux:
  soc: qcom: pdr: Fixup array type of get_domain_list_resp message

Link: https://lore.kernel.org/r/20200921235241.36463-1-bjorn.andersson@linaro.orgSigned-off-by: default avatarOlof Johansson <olof@lixom.net>
parents 190b05d7 7a366707
...@@ -185,7 +185,7 @@ struct qmi_elem_info servreg_get_domain_list_resp_ei[] = { ...@@ -185,7 +185,7 @@ struct qmi_elem_info servreg_get_domain_list_resp_ei[] = {
.data_type = QMI_STRUCT, .data_type = QMI_STRUCT,
.elem_len = SERVREG_DOMAIN_LIST_LENGTH, .elem_len = SERVREG_DOMAIN_LIST_LENGTH,
.elem_size = sizeof(struct servreg_location_entry), .elem_size = sizeof(struct servreg_location_entry),
.array_type = NO_ARRAY, .array_type = VAR_LEN_ARRAY,
.tlv_type = 0x12, .tlv_type = 0x12,
.offset = offsetof(struct servreg_get_domain_list_resp, .offset = offsetof(struct servreg_get_domain_list_resp,
domain_list), domain_list),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment