Commit 56c7659a authored by Jeff Johnson's avatar Jeff Johnson Committed by Greg Kroah-Hartman

slimbus: qcom-ngd-ctrl: Make QMI message rules const

Commit ff6d3658 ("soc: qcom: qmi: use const for struct
qmi_elem_info") allows QMI message encoding/decoding rules
to be const, so do that for qcom-ngd-ctrl.c.
Signed-off-by: default avatarJeff Johnson <quic_jjohnson@quicinc.com>
Signed-off-by: default avatarSrinivas Kandagatla <srinivas.kandagatla@linaro.org>
Link: https://lore.kernel.org/r/20240224114403.86230-2-srinivas.kandagatla@linaro.orgSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 89ffa4cc
...@@ -220,7 +220,7 @@ struct slimbus_power_resp_msg_v01 { ...@@ -220,7 +220,7 @@ struct slimbus_power_resp_msg_v01 {
struct qmi_response_type_v01 resp; struct qmi_response_type_v01 resp;
}; };
static struct qmi_elem_info slimbus_select_inst_req_msg_v01_ei[] = { static const struct qmi_elem_info slimbus_select_inst_req_msg_v01_ei[] = {
{ {
.data_type = QMI_UNSIGNED_4_BYTE, .data_type = QMI_UNSIGNED_4_BYTE,
.elem_len = 1, .elem_len = 1,
...@@ -262,7 +262,7 @@ static struct qmi_elem_info slimbus_select_inst_req_msg_v01_ei[] = { ...@@ -262,7 +262,7 @@ static struct qmi_elem_info slimbus_select_inst_req_msg_v01_ei[] = {
}, },
}; };
static struct qmi_elem_info slimbus_select_inst_resp_msg_v01_ei[] = { static const struct qmi_elem_info slimbus_select_inst_resp_msg_v01_ei[] = {
{ {
.data_type = QMI_STRUCT, .data_type = QMI_STRUCT,
.elem_len = 1, .elem_len = 1,
...@@ -284,7 +284,7 @@ static struct qmi_elem_info slimbus_select_inst_resp_msg_v01_ei[] = { ...@@ -284,7 +284,7 @@ static struct qmi_elem_info slimbus_select_inst_resp_msg_v01_ei[] = {
}, },
}; };
static struct qmi_elem_info slimbus_power_req_msg_v01_ei[] = { static const struct qmi_elem_info slimbus_power_req_msg_v01_ei[] = {
{ {
.data_type = QMI_UNSIGNED_4_BYTE, .data_type = QMI_UNSIGNED_4_BYTE,
.elem_len = 1, .elem_len = 1,
...@@ -324,7 +324,7 @@ static struct qmi_elem_info slimbus_power_req_msg_v01_ei[] = { ...@@ -324,7 +324,7 @@ static struct qmi_elem_info slimbus_power_req_msg_v01_ei[] = {
}, },
}; };
static struct qmi_elem_info slimbus_power_resp_msg_v01_ei[] = { static const struct qmi_elem_info slimbus_power_resp_msg_v01_ei[] = {
{ {
.data_type = QMI_STRUCT, .data_type = QMI_STRUCT,
.elem_len = 1, .elem_len = 1,
......
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