]> www.infradead.org Git - users/hch/misc.git/commitdiff
xtensa: use HZ_PER_MHZ in platform_calibrate_ccount
authorThorsten Blum <thorsten.blum@linux.dev>
Mon, 15 Sep 2025 12:05:39 +0000 (14:05 +0200)
committerMax Filippov <jcmvbkbc@gmail.com>
Mon, 15 Sep 2025 15:37:28 +0000 (08:37 -0700)
Replace the hardcoded 1000000UL with the HZ_PER_MHZ unit macro, and add
a space in "10 MHz" to improve the readability of the error message.

Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
Message-Id: <20250915120540.2150841-3-thorsten.blum@linux.dev>
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
arch/xtensa/kernel/platform.c

index 926b8bf0f14c975146ad37b8e436cb4107ce4b8d..f14713060fd4f02416305ce4c254faf996fc3f84 100644 (file)
@@ -14,6 +14,7 @@
 
 #include <linux/printk.h>
 #include <linux/types.h>
+#include <linux/units.h>
 #include <asm/platform.h>
 #include <asm/timex.h>
 
@@ -38,7 +39,7 @@ void __weak platform_idle(void)
 #ifdef CONFIG_XTENSA_CALIBRATE_CCOUNT
 void __weak platform_calibrate_ccount(void)
 {
-       pr_err("ERROR: Cannot calibrate cpu frequency! Assuming 10MHz.\n");
-       ccount_freq = 10 * 1000000UL;
+       pr_err("ERROR: Cannot calibrate cpu frequency! Assuming 10 MHz.\n");
+       ccount_freq = 10 * HZ_PER_MHZ;
 }
 #endif