Skip to content

Commit

Permalink
soc: qcom: watchdog: Modify some debug level
Browse files Browse the repository at this point in the history
Modify the irq_count print debug level from info to debug.

Change-Id: I1c5677414b2a97fc2697b003620a80d8843589a7
Signed-off-by: zhaochen <zhaochen@codeaurora.org>
Signed-off-by: engstk <eng.stk@sapo.pt>
  • Loading branch information
zhaochen authored and engstk committed Oct 6, 2020
1 parent b652372 commit 8482442
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions drivers/soc/qcom/watchdog_v2.c
Original file line number Diff line number Diff line change
Expand Up @@ -493,24 +493,24 @@ static void print_irq_stat(struct msm_watchdog_data *wdog_dd)
struct irq_info *info;


pr_debug("(virq:irq_count)- ");
pr_debug("(virq:irq_count)-\n");
for (index = 0; index < NR_TOP_HITTERS; index++) {
info = &wdog_dd->irq_counts[index];
pr_cont("%u:%u ", info->irq, info->total_count);
pr_debug("%u:%u\n", info->irq, info->total_count);
}
pr_cont("\n");
pr_debug("\n");

pr_debug("(cpu:irq_count)- ");
pr_debug("(cpu:irq_count)-\n");
for_each_possible_cpu(cpu)
pr_cont("%u:%u ", cpu, wdog_dd->tot_irq_count[cpu]);
pr_cont("\n");
pr_debug("%u:%u\n", cpu, wdog_dd->tot_irq_count[cpu]);
pr_debug("\n");

pr_debug("(ipi:irq_count)- ");
pr_debug("(ipi:irq_count)-\n");
for (index = 0; index < NR_IPI; index++) {
info = &wdog_dd->ipi_counts[index];
pr_cont("%u:%u ", info->irq, info->total_count);
pr_debug("%u:%u\n", info->irq, info->total_count);
}
pr_cont("\n");
pr_debug("\n");
}

static void compute_irq_stat(struct work_struct *work)
Expand Down

0 comments on commit 8482442

Please sign in to comment.