diff options
-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 |