summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClint George <clintbgeorge@gmail.com>2025-11-11 20:43:39 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2025-11-26 15:11:15 +0100
commite03a2f7df72e8b7b56cdd0e19c295bf7633ed4ea (patch)
treed4d83fe1c09dafdea01fa801082609c1047b8ea6
parent75d19e368640f69a3c8532001ec99685d0e2ce89 (diff)
hangcheck-timer: Replace %Ld with %lld
Replace non-standard %Ld with %lld to ensure compliance with the kernel coding style and potential formatting issues. Signed-off-by: Clint George <clintbgeorge@gmail.com> Link: https://patch.msgid.link/20251111151340.9162-3-clintbgeorge@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/char/hangcheck-timer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/hangcheck-timer.c b/drivers/char/hangcheck-timer.c
index 21ef8a6a0463..ff141fdb437a 100644
--- a/drivers/char/hangcheck-timer.c
+++ b/drivers/char/hangcheck-timer.c
@@ -142,7 +142,7 @@ static void hangcheck_fire(struct timer_list *unused)
/*
* Enable to investigate delays in detail
*/
- pr_debug("Hangcheck: called %Ld ns since last time (%Ld ns overshoot)\n",
+ pr_debug("Hangcheck: called %lld ns since last time (%lld ns overshoot)\n",
tsc_diff, tsc_diff - hangcheck_tick*TIMER_FREQ);
#endif
mod_timer(&hangcheck_ticktock, jiffies + (hangcheck_tick*HZ));