acpi_indicator() can take the softc*, instead of void*
authorderaadt <deraadt@openbsd.org>
Mon, 14 Feb 2022 19:25:03 +0000 (19:25 +0000)
committerderaadt <deraadt@openbsd.org>
Mon, 14 Feb 2022 19:25:03 +0000 (19:25 +0000)
sys/dev/acpi/acpi_x86.c

index c7040d8..8d844ff 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: acpi_x86.c,v 1.1 2022/02/09 23:54:34 deraadt Exp $ */
+/* $OpenBSD: acpi_x86.c,v 1.2 2022/02/14 19:25:03 deraadt Exp $ */
 /*
  * Copyright (c) 2005 Thorsten Lockert <tholo@sigmasoft.com>
  * Copyright (c) 2005 Jordan Hargrave <jordan@openbsd.org>
@@ -115,7 +115,7 @@ gosleep(void *v)
        struct acpi_softc *sc = v;
 
        acpibtn_enable_psw();   /* enable _LID for wakeup */
-       acpi_indicator(v, ACPI_SST_SLEEPING);
+       acpi_indicator(sc, ACPI_SST_SLEEPING);
 
        /* 3rd suspend AML step: _GTS(tostate) */
        aml_node_setval(sc, sc->sc_gts, sc->sc_state);