Module Name: src
Committed By: christos
Date: Sat Apr 27 00:40:07 UTC 2024
Modified Files:
src/sys/dev/acpi: acpi_bat.c
Log Message:
Remove 0 initializations (since the softc is zalloc'ed) and the initial
refresh which will have no data.
To generate a diff of this commit:
cvs rdiff -u -r1.122 -r1.123 src/sys/dev/acpi/acpi_bat.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/acpi/acpi_bat.c
diff -u src/sys/dev/acpi/acpi_bat.c:1.122 src/sys/dev/acpi/acpi_bat.c:1.123
--- src/sys/dev/acpi/acpi_bat.c:1.122 Fri Apr 26 14:19:18 2024
+++ src/sys/dev/acpi/acpi_bat.c Fri Apr 26 20:40:06 2024
@@ -1,4 +1,4 @@
-/* $NetBSD: acpi_bat.c,v 1.122 2024/04/26 18:19:18 christos Exp $ */
+/* $NetBSD: acpi_bat.c,v 1.123 2024/04/27 00:40:06 christos Exp $ */
/*-
* Copyright (c) 2003 The NetBSD Foundation, Inc.
@@ -75,7 +75,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: acpi_bat.c,v 1.122 2024/04/26 18:19:18 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: acpi_bat.c,v 1.123 2024/04/27 00:40:06 christos Exp $");
#include <sys/param.h>
#include <sys/condvar.h>
@@ -229,14 +229,6 @@ acpibat_attach(device_t parent, device_t
sc->sc_node = aa->aa_node;
- sc->sc_present = 0;
- sc->sc_dvoltage = 0;
- sc->sc_dcapacity = 0;
- sc->sc_lcapacity = 0;
- sc->sc_wcapacity = 0;
-
- sc->sc_sme = NULL;
-
mutex_init(&sc->sc_mutex, MUTEX_DEFAULT, IPL_NONE);
cv_init(&sc->sc_condvar, device_xname(self));
@@ -759,7 +751,7 @@ acpibat_init_envsys(device_t dv)
sc->sc_sme->sme_cookie = dv;
sc->sc_sme->sme_refresh = acpibat_refresh;
sc->sc_sme->sme_class = SME_CLASS_BATTERY;
- sc->sc_sme->sme_flags = SME_POLL_ONLY | SME_INIT_REFRESH;
+ sc->sc_sme->sme_flags = SME_POLL_ONLY;
sc->sc_sme->sme_get_limits = acpibat_get_limits;
if (sysmon_envsys_register(sc->sc_sme))