aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ppc/ppc.c
diff options
context:
space:
mode:
authorGleb Smirnoff <glebius@FreeBSD.org>2013-02-21 12:40:52 +0000
committerGleb Smirnoff <glebius@FreeBSD.org>2013-02-21 12:40:52 +0000
commitd0741ed4c3030d4eeaed706ee31321743d2ec70c (patch)
tree6adf4e419e26880de252c248451cc9e07a6f17e9 /sys/dev/ppc/ppc.c
parentde2d9111ecb81e215b7484eb5b1230b291e1e0b5 (diff)
Notes
Diffstat (limited to 'sys/dev/ppc/ppc.c')
-rw-r--r--sys/dev/ppc/ppc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ppc/ppc.c b/sys/dev/ppc/ppc.c
index 6c59e02d5b8a..e1edc4d87ae2 100644
--- a/sys/dev/ppc/ppc.c
+++ b/sys/dev/ppc/ppc.c
@@ -75,7 +75,7 @@ static void ppcintr(void *arg);
#define DEVTOSOFTC(dev) ((struct ppc_data *)device_get_softc(dev))
/*
- * We use critical enter/leave for the simple config locking needed to
+ * We use critical enter/exit for the simple config locking needed to
* detect the devices. We just want to make sure that both of our writes
* happen without someone else also writing to those config registers. Since
* we just do this at startup, Giant keeps multiple threads from executing,
@@ -88,7 +88,7 @@ static void ppcintr(void *arg);
* and no other code changes these registers.
*/
#define PPC_CONFIG_LOCK(ppc) critical_enter()
-#define PPC_CONFIG_UNLOCK(ppc) critical_leave()
+#define PPC_CONFIG_UNLOCK(ppc) critical_exit()
devclass_t ppc_devclass;
const char ppc_driver_name[] = "ppc";