mirror of
https://github.com/riscv-software-src/opensbi.git
synced 2026-05-23 14:21:32 +01:00
lib: utils: Fix LLVM compile error in MPXY client driver for RPMI MM
The following compile error is seen with LLVM compiler:
CC platform/generic/lib/utils/mpxy/fdt_mpxy_rpmi_mm.o
lib/utils/mpxy/fdt_mpxy_rpmi_mm.c:17:6: error: use of GNU 'missing =' extension in
designator [-Werror,-Wgnu-designator]
17 | [0] {
| ^
| =
lib/utils/mpxy/fdt_mpxy_rpmi_mm.c:24:6: error: use of GNU 'missing =' extension in
designator [-Werror,-Wgnu-designator]
24 | [1] {
| ^
| =
2 errors generated.
Add missing "=" in mm_srvcdata[] array initialization to address
the above issue.
Fixes: 0b041e58c0 ("lib: utils: Add MPXY client driver for RPMI MM service group")
Signed-off-by: Anup Patel <anup.patel@oss.qualcomm.com>
Reviewed-by: Ranbir Singh <ranbir.singh@oss.qualcomm.com>
Link: https://lore.kernel.org/r/20260509161849.2935816-1-anup.patel@oss.qualcomm.com
Signed-off-by: Anup Patel <anup@brainfault.org>
This commit is contained in:
@@ -14,14 +14,14 @@
|
|||||||
static struct rpmi_mm_get_attributes_rsp rsp;
|
static struct rpmi_mm_get_attributes_rsp rsp;
|
||||||
|
|
||||||
static struct mpxy_rpmi_service_data mm_srvcdata[] = {
|
static struct mpxy_rpmi_service_data mm_srvcdata[] = {
|
||||||
[0] {
|
[0] = {
|
||||||
.id = RPMI_MM_SRV_GET_ATTRIBUTES,
|
.id = RPMI_MM_SRV_GET_ATTRIBUTES,
|
||||||
.min_tx_len = 0,
|
.min_tx_len = 0,
|
||||||
.max_tx_len = 0,
|
.max_tx_len = 0,
|
||||||
.min_rx_len = sizeof(struct rpmi_mm_get_attributes_rsp),
|
.min_rx_len = sizeof(struct rpmi_mm_get_attributes_rsp),
|
||||||
.max_rx_len = sizeof(struct rpmi_mm_get_attributes_rsp),
|
.max_rx_len = sizeof(struct rpmi_mm_get_attributes_rsp),
|
||||||
},
|
},
|
||||||
[1] {
|
[1] = {
|
||||||
.id = RPMI_MM_SRV_COMMUNICATE,
|
.id = RPMI_MM_SRV_COMMUNICATE,
|
||||||
.min_tx_len = sizeof(struct rpmi_mm_communicate_req),
|
.min_tx_len = sizeof(struct rpmi_mm_communicate_req),
|
||||||
.max_tx_len = sizeof(struct rpmi_mm_communicate_req),
|
.max_tx_len = sizeof(struct rpmi_mm_communicate_req),
|
||||||
|
|||||||
Reference in New Issue
Block a user