diff options
author | iwasaki <iwasaki@FreeBSD.org> | 2002-08-09 07:08:53 +0000 |
---|---|---|
committer | iwasaki <iwasaki@FreeBSD.org> | 2002-08-09 07:08:53 +0000 |
commit | 33368833bcfa4ef150f60731d435036f8ecae62b (patch) | |
tree | ba89ff3ae64adf6c09a8194f47d24693f776e04e /sys | |
parent | 60f8c41a919546caea6cffa295e98b5f21e9a4f0 (diff) | |
download | FreeBSD-src-33368833bcfa4ef150f60731d435036f8ecae62b.zip FreeBSD-src-33368833bcfa4ef150f60731d435036f8ecae62b.tar.gz |
Fix wrong member variable ordering of struct acpi_bif.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/acpica/acpiio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/acpica/acpiio.h b/sys/dev/acpica/acpiio.h index 48439f3..002233b 100644 --- a/sys/dev/acpica/acpiio.h +++ b/sys/dev/acpica/acpiio.h @@ -52,8 +52,8 @@ struct acpi_battinfo { struct acpi_bif { u_int32_t unit; /* 0 for mWh, 1 for mAh */ u_int32_t dcap; /* Design Capacity */ - u_int32_t btech; /* Battery Technorogy */ u_int32_t lfcap; /* Last Full capacity */ + u_int32_t btech; /* Battery Technorogy */ u_int32_t dvol; /* Design voltage (mV) */ u_int32_t wcap; /* WARN capacity */ u_int32_t lcap; /* Low capacity */ |