diff options
author | scottl <scottl@FreeBSD.org> | 2001-12-04 02:24:07 +0000 |
---|---|---|
committer | scottl <scottl@FreeBSD.org> | 2001-12-04 02:24:07 +0000 |
commit | 6ba0b41dce116da03ec4bf1dfb4b8d0a047c25ac (patch) | |
tree | 14e51dc8d4206f7dfdce61de0afc7ec5d7bb8c85 /sys/dev/aac/aacvar.h | |
parent | 9baf2f1b038483b2b3a06aa8edb82b2d5fe9707a (diff) | |
download | FreeBSD-src-6ba0b41dce116da03ec4bf1dfb4b8d0a047c25ac.zip FreeBSD-src-6ba0b41dce116da03ec4bf1dfb4b8d0a047c25ac.tar.gz |
Bah, I missed this file on the last commit
Diffstat (limited to 'sys/dev/aac/aacvar.h')
-rw-r--r-- | sys/dev/aac/aacvar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/aac/aacvar.h b/sys/dev/aac/aacvar.h index 51c9c77..99cbda0 100644 --- a/sys/dev/aac/aacvar.h +++ b/sys/dev/aac/aacvar.h @@ -255,12 +255,12 @@ TAILQ_HEAD(aac_container_tq, aac_container); #include <sys/mutex.h> typedef struct mtx aac_lock_t; #define AAC_LOCK_INIT(l, s) mtx_init(l, s, MTX_DEF) -#define AAC_LOCK_AQUIRE(l) mtx_lock(l) +#define AAC_LOCK_ACQUIRE(l) mtx_lock(l) #define AAC_LOCK_RELEASE(l) mtx_unlock(l) #else typedef struct simplelock aac_lock_t; #define AAC_LOCK_INIT(l, s) simple_lock_init(l) -#define AAC_LOCK_AQUIRE(l) simple_lock(l) +#define AAC_LOCK_ACQUIRE(l) simple_lock(l) #define AAC_LOCK_RELEASE(l) simple_unlock(l) #endif |