|
@@ -1583,6 +1583,12 @@ ssize_t hif_dump_desc_event(struct hif_softc *scn, char *buf)
|
|
|
|
|
|
ce_hist = &scn->hif_ce_desc_hist;
|
|
|
|
|
|
+ if (ce_hist->hist_id >= CE_COUNT_MAX ||
|
|
|
+ ce_hist->hist_index >= HIF_CE_HISTORY_MAX) {
|
|
|
+ qdf_print("Invalid values");
|
|
|
+ return -EINVAL;
|
|
|
+ }
|
|
|
+
|
|
|
hist_ev =
|
|
|
(struct hif_ce_desc_event *)ce_hist->hist_ev[ce_hist->hist_id];
|
|
|
|
|
@@ -1593,12 +1599,6 @@ ssize_t hif_dump_desc_event(struct hif_softc *scn, char *buf)
|
|
|
|
|
|
event = &hist_ev[ce_hist->hist_index];
|
|
|
|
|
|
- if ((ce_hist->hist_id >= CE_COUNT_MAX) ||
|
|
|
- (ce_hist->hist_index >= HIF_CE_HISTORY_MAX)) {
|
|
|
- qdf_print("Invalid values");
|
|
|
- return -EINVAL;
|
|
|
- }
|
|
|
-
|
|
|
qdf_log_timestamp_to_secs(event->time, &secs, &usecs);
|
|
|
|
|
|
len += snprintf(buf, PAGE_SIZE - len,
|
|
@@ -1658,8 +1658,8 @@ ssize_t hif_input_desc_trace_buf_index(struct hif_softc *scn,
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
|
|
|
- if (sscanf(buf, "%d %d", &ce_hist->hist_id,
|
|
|
- &ce_hist->hist_index) != 2) {
|
|
|
+ if (sscanf(buf, "%u %u", (unsigned int *)&ce_hist->hist_id,
|
|
|
+ (unsigned int *)&ce_hist->hist_index) != 2) {
|
|
|
pr_err("%s: Invalid input value.\n", __func__);
|
|
|
return -EINVAL;
|
|
|
}
|
|
@@ -1703,7 +1703,8 @@ ssize_t hif_ce_en_desc_hist(struct hif_softc *scn, const char *buf, size_t size)
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
|
|
|
- if (sscanf(buf, "%d %d", &ce_id, &cfg) != 2) {
|
|
|
+ if (sscanf(buf, "%u %u", (unsigned int *)&ce_id,
|
|
|
+ (unsigned int *)&cfg) != 2) {
|
|
|
pr_err("%s: Invalid input: Enter CE Id<sp><1/0>.\n", __func__);
|
|
|
return -EINVAL;
|
|
|
}
|