From a1078af4df0935df72d90ef531156edb181ddafb Mon Sep 17 00:00:00 2001 From: Scott Long Date: Tue, 4 Dec 2001 02:24:07 +0000 Subject: [PATCH] Bah, I missed this file on the last commit --- sys/dev/aac/aacvar.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/aac/aacvar.h b/sys/dev/aac/aacvar.h index 51c9c7759dd3..99cbda08a618 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 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