diff options
author | Marcus Glocker <mglocker@cvs.openbsd.org> | 2022-10-24 04:28:02 +0000 |
---|---|---|
committer | Marcus Glocker <mglocker@cvs.openbsd.org> | 2022-10-24 04:28:02 +0000 |
commit | acc84a9fad1a234f22c80696bfe01a5d1ba6dfea (patch) | |
tree | 29d3035a6ad6163b95f7d8f5c89402c102398f7f /sys/dev/i2c/pijuice.c | |
parent | b74d390f62a67ed647bab388ea4176c05af2f715 (diff) |
Fix comment; sconds -> seconds
Diffstat (limited to 'sys/dev/i2c/pijuice.c')
-rw-r--r-- | sys/dev/i2c/pijuice.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/i2c/pijuice.c b/sys/dev/i2c/pijuice.c index 393e7f5bca4..0a1d94e1d93 100644 --- a/sys/dev/i2c/pijuice.c +++ b/sys/dev/i2c/pijuice.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pijuice.c,v 1.1 2022/10/23 18:43:00 mglocker Exp $ */ +/* $OpenBSD: pijuice.c,v 1.2 2022/10/24 04:28:01 mglocker Exp $ */ /* * Copyright (c) 2022 Marcus Glocker <mglocker@openbsd.org> @@ -360,7 +360,7 @@ pijuice_apminfo(struct apm_power_info *info) DPRINTF(("%s: Battery Charge Level=%d\n", __func__, val8)); info->battery_life = val8; - /* On "normal load" we suck 1% battery in 30 sconds. */ + /* On "normal load" we suck 1% battery in 30 seconds. */ info->minutes_left = (val8 * 30) / 60; } |