From: Clint George Date: Tue, 11 Nov 2025 15:13:39 +0000 (+0530) Subject: hangcheck-timer: Replace %Ld with %lld X-Git-Tag: v6.19-rc1~65^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e03a2f7df72e8b7b56cdd0e19c295bf7633ed4ea;p=thirdparty%2Flinux.git 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 Link: https://patch.msgid.link/20251111151340.9162-3-clintbgeorge@gmail.com Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/char/hangcheck-timer.c b/drivers/char/hangcheck-timer.c index 21ef8a6a04637..ff141fdb437aa 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));