summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2021-02-23 00:03:02 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2021-02-23 00:03:02 +0000
commit249c4f1607f589c954b4c0cfa08038a500dd6911 (patch)
treeb673e138771ed653e7916725b3fae777c7e80762
parenta5fd288ababbacbf7c8cb1693f2b78161480c2da (diff)
remove unused acpiec_lock() acpiec_unlock() functions
ok kettenis@ pirofti@
-rw-r--r--sys/dev/acpi/acpiec.c29
1 files changed, 1 insertions, 28 deletions
diff --git a/sys/dev/acpi/acpiec.c b/sys/dev/acpi/acpiec.c
index 6c6a547423d..3d4c0902c05 100644
--- a/sys/dev/acpi/acpiec.c
+++ b/sys/dev/acpi/acpiec.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: acpiec.c,v 1.62 2020/08/26 03:29:06 visa Exp $ */
+/* $OpenBSD: acpiec.c,v 1.63 2021/02/23 00:03:01 jsg Exp $ */
/*
* Copyright (c) 2006 Can Erkin Acar <canacar@openbsd.org>
*
@@ -57,9 +57,6 @@ void acpiec_get_events(struct acpiec_softc *);
int acpiec_gpehandler(struct acpi_softc *, int, void *);
-void acpiec_lock(struct acpiec_softc *);
-void acpiec_unlock(struct acpiec_softc *);
-
/* EC Status bits */
#define EC_STAT_SMI_EVT 0x40 /* SMI event pending */
#define EC_STAT_SCI_EVT 0x20 /* SCI event pending */
@@ -525,27 +522,3 @@ acpiec_reg(struct acpiec_softc *sc)
return (0);
}
-
-void
-acpiec_lock(struct acpiec_softc *sc)
-{
- KASSERT(sc->sc_ecbusy == 0);
-
- sc->sc_ecbusy = 1;
-
- if (sc->sc_glk) {
- acpi_glk_enter();
- }
-}
-
-void
-acpiec_unlock(struct acpiec_softc *sc)
-{
- KASSERT(sc->sc_ecbusy == 1);
-
- if (sc->sc_glk) {
- acpi_glk_leave();
- }
-
- sc->sc_ecbusy = 0;
-}