You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ipc_cmd_err(&ipc_tr, "ipc_probe_dma_add(): Invalid amount of injection DMAs specified = %d. Max is "
1025
+
ipc_cmd_err(&ipc_tr, "Invalid amount of injection DMAs specified = %d. Max is "
1026
1026
STRINGIFY(CONFIG_PROBE_DMA_MAX) ".",
1027
1027
dmas_count);
1028
1028
return-EINVAL;
1029
1029
}
1030
1030
1031
1031
if (dmas_count <= 0) {
1032
-
ipc_cmd_err(&ipc_tr, "ipc_probe_dma_add(): Inferred amount of incjection DMAs in payload is %d. This could indicate corrupt size reported in header or invalid IPC payload.",
1032
+
ipc_cmd_err(&ipc_tr, "Inferred amount of incjection DMAs in payload is %d. This could indicate corrupt size reported in header or invalid IPC payload.",
1033
1033
dmas_count);
1034
1034
return-EINVAL;
1035
1035
}
@@ -1042,17 +1042,17 @@ static inline int ipc_probe_dma_remove(uint32_t header)
ipc_cmd_err(&ipc_tr, "ipc_probe_dma_remove(): Invalid amount of injection DMAs specified = %d. Max is "
1048
+
ipc_cmd_err(&ipc_tr, "Invalid amount of injection DMAs specified = %d. Max is "
1049
1049
STRINGIFY(CONFIG_PROBE_DMA_MAX) ".",
1050
1050
tags_count);
1051
1051
return-EINVAL;
1052
1052
}
1053
1053
1054
1054
if (tags_count <= 0) {
1055
-
ipc_cmd_err(&ipc_tr, "ipc_probe_dma_remove(): Inferred amount of incjection DMAs in payload is %d. This could indicate corrupt size reported in header or invalid IPC payload.",
1055
+
ipc_cmd_err(&ipc_tr, "Inferred amount of incjection DMAs in payload is %d. This could indicate corrupt size reported in header or invalid IPC payload.",
1056
1056
tags_count);
1057
1057
return-EINVAL;
1058
1058
}
@@ -1065,17 +1065,17 @@ static inline int ipc_probe_point_add(uint32_t header)
ipc_cmd_err(&ipc_tr, "ipc_probe_point_add(): Invalid amount of Probe Points specified = %d. Max is "
1071
+
ipc_cmd_err(&ipc_tr, "Invalid amount of Probe Points specified = %d. Max is "
1072
1072
STRINGIFY(CONFIG_PROBE_POINT_MAX) ".",
1073
1073
probes_count);
1074
1074
return-EINVAL;
1075
1075
}
1076
1076
1077
1077
if (probes_count <= 0) {
1078
-
ipc_cmd_err(&ipc_tr, "ipc_probe_point_add(): Inferred amount of Probe Points in payload is %d. This could indicate corrupt size reported in header or invalid IPC payload.",
1078
+
ipc_cmd_err(&ipc_tr, "Inferred amount of Probe Points in payload is %d. This could indicate corrupt size reported in header or invalid IPC payload.",
1079
1079
probes_count);
1080
1080
return-EINVAL;
1081
1081
}
@@ -1088,17 +1088,17 @@ static inline int ipc_probe_point_remove(uint32_t header)
ipc_cmd_err(&ipc_tr, "ipc_probe_point_remove(): Invalid amount of Probe Points specified = %d. Max is "
1094
+
ipc_cmd_err(&ipc_tr, "Invalid amount of Probe Points specified = %d. Max is "
1095
1095
STRINGIFY(CONFIG_PROBE_POINT_MAX) ".",
1096
1096
probes_count);
1097
1097
return-EINVAL;
1098
1098
}
1099
1099
1100
1100
if (probes_count <= 0) {
1101
-
ipc_cmd_err(&ipc_tr, "ipc_probe_point_remove(): Inferred amount of Probe Points in payload is %d. This could indicate corrupt size reported in header or invalid IPC payload.",
1101
+
ipc_cmd_err(&ipc_tr, "Inferred amount of Probe Points in payload is %d. This could indicate corrupt size reported in header or invalid IPC payload.",
1102
1102
probes_count);
1103
1103
return-EINVAL;
1104
1104
}
@@ -1111,7 +1111,7 @@ static int ipc_probe_info(uint32_t header)
0 commit comments