summaryrefslogtreecommitdiff
path: root/sys/arch/amd64/amd64/hpet.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/amd64/amd64/hpet.c')
-rw-r--r--sys/arch/amd64/amd64/hpet.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/amd64/hpet.c b/sys/arch/amd64/amd64/hpet.c
index 28baa35..1670546 100644
--- a/sys/arch/amd64/amd64/hpet.c
+++ b/sys/arch/amd64/amd64/hpet.c
@@ -157,7 +157,7 @@ hpet_init(void)
/* Ensure caps aren't bogus */
caps = hpet_read(HPET_REG_CAPS);
if (CAP_REV_ID(caps) == 0) {
- pr_error("Found bogus revision, assuming faulty\n");
+ pr_error("found bogus revision, assuming faulty\n");
return -1;
}
if (CAP_CLK_PERIOD(caps) > 0x05F5E100) {
@@ -166,7 +166,7 @@ hpet_init(void)
* be <= 0x05F5E100. So we'll consider it as bogus
* if it exceeds this value
*/
- pr_error("Found bogus COUNTER_CLK_PERIOD, assuming faulty\n");
+ pr_error("found bogus COUNTER_CLK_PERIOD, assuming faulty\n");
return 1;
}