diff options
| author | Christian Brueffer <brueffer@FreeBSD.org> | 2004-06-22 08:23:26 +0000 |
|---|---|---|
| committer | Christian Brueffer <brueffer@FreeBSD.org> | 2004-06-22 08:23:26 +0000 |
| commit | 889608790b1fd382562ae4e2f3e3a570d7e3b10a (patch) | |
| tree | a78e3cf1add1ae228c6f841b09979ff83ac04d1f | |
| parent | 3202f019e7d0a72da8103d909643a08a219bcdb7 (diff) | |
Notes
| -rw-r--r-- | sys/dev/acpica/acpiio.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/acpica/acpiio.h b/sys/dev/acpica/acpiio.h index 5642492ca9f53..a782dfc4cb5c8 100644 --- a/sys/dev/acpica/acpiio.h +++ b/sys/dev/acpica/acpiio.h @@ -44,7 +44,7 @@ struct acpi_battdesc { struct acpi_battinfo { int cap; /* percent */ - int min; /* remianing time */ + int min; /* remaining time */ int state; /* battery state */ }; @@ -57,8 +57,8 @@ struct acpi_bif { u_int32_t dvol; /* Design voltage (mV) */ u_int32_t wcap; /* WARN capacity */ u_int32_t lcap; /* Low capacity */ - u_int32_t gra1; /* Granulity 1(Warn to Low) */ - u_int32_t gra2; /* Granulity 2(Full to Warn) */ + u_int32_t gra1; /* Granularity 1 (Warn to Low) */ + u_int32_t gra2; /* Granularity 2 (Full to Warn) */ char model[ACPI_CMBAT_MAXSTRLEN]; /* model identifier */ char serial[ACPI_CMBAT_MAXSTRLEN]; /* Serial number */ char type[ACPI_CMBAT_MAXSTRLEN]; /* Type */ |
