diff options
author | jhb <jhb@FreeBSD.org> | 2005-06-23 21:54:17 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2005-06-23 21:54:17 +0000 |
commit | 4e2603348a74cac9fc901cb90da392ead7565750 (patch) | |
tree | 437453f5362c726f058a446641f3c1f1af4557c8 /sys/arm | |
parent | 2cd355b740e47e5e9a543d6aed4b27113f77adfc (diff) | |
download | FreeBSD-src-4e2603348a74cac9fc901cb90da392ead7565750.zip FreeBSD-src-4e2603348a74cac9fc901cb90da392ead7565750.tar.gz |
Fix a typo.
Approved by: re (scottl)
Diffstat (limited to 'sys/arm')
-rw-r--r-- | sys/arm/include/atomic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arm/include/atomic.h b/sys/arm/include/atomic.h index 30f0fcd..a420751 100644 --- a/sys/arm/include/atomic.h +++ b/sys/arm/include/atomic.h @@ -283,7 +283,7 @@ atomic_readandclear_32(volatile u_int32_t *p) #define atomic_store_rel_ptr atomic_store_ptr #define atomic_store_rel_int atomic_store_32 #define atomic_cmpset_rel_32 atomic_cmpset_32 -#define atomic_smpset_rel_ptr atomic_cmpset_ptr +#define atomic_cmpset_rel_ptr atomic_cmpset_ptr #define atomic_load_acq_int atomic_load_32 #define atomic_clear_ptr(ptr, bit) atomic_clear_32( \ (volatile uint32_t *)ptr, (uint32_t)bit) |