Changeset 4119
- Timestamp:
- 01/31/10 08:06:30 (1 month ago)
- Files:
-
- madwifi/branches/madwifi-0.9.3/ath/if_athvar.h (modified) (1 diff)
- madwifi/branches/madwifi-0.9.4/ath/if_athvar.h (modified) (1 diff)
- madwifi/branches/madwifi-dfs/ath/if_athvar.h (modified) (1 diff)
- madwifi/branches/madwifi-hal-0.10.5.6/ath/if_athvar.h (modified) (1 diff)
- madwifi/branches/madwifi-hal-0.9.30.13/ath/if_athvar.h (modified) (1 diff)
- madwifi/branches/madwifi-hal-testing/ath/if_athvar.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
madwifi/branches/madwifi-0.9.3/ath/if_athvar.h
r4110 r4119 738 738 #endif 739 739 /* Protects the device from concurrent accesses */ 740 #define ATH_LOCK_INIT(_sc) init_MUTEX(&(_sc)->sc_lock)740 #define ATH_LOCK_INIT(_sc) sema_init(&(_sc)->sc_lock, 1) 741 741 #define ATH_LOCK_DESTROY(_sc) 742 742 #define ATH_LOCK(_sc) down(&(_sc)->sc_lock) madwifi/branches/madwifi-0.9.4/ath/if_athvar.h
r4110 r4119 750 750 #endif 751 751 /* Protects the device from concurrent accesses */ 752 #define ATH_LOCK_INIT(_sc) init_MUTEX(&(_sc)->sc_lock)752 #define ATH_LOCK_INIT(_sc) sema_init(&(_sc)->sc_lock, 1) 753 753 #define ATH_LOCK_DESTROY(_sc) 754 754 #define ATH_LOCK(_sc) down(&(_sc)->sc_lock) madwifi/branches/madwifi-dfs/ath/if_athvar.h
r4110 r4119 994 994 #endif 995 995 /* Protects the device from concurrent accesses */ 996 #define ATH_LOCK_INIT(_sc) init_MUTEX(&(_sc)->sc_lock)996 #define ATH_LOCK_INIT(_sc) sema_init(&(_sc)->sc_lock, 1) 997 997 #define ATH_LOCK_DESTROY(_sc) 998 998 #define ATH_LOCK(_sc) down(&(_sc)->sc_lock) madwifi/branches/madwifi-hal-0.10.5.6/ath/if_athvar.h
r4110 r4119 999 999 #endif 1000 1000 /* Protects the device from concurrent accesses */ 1001 #define ATH_LOCK_INIT(_sc) init_MUTEX(&(_sc)->sc_lock)1001 #define ATH_LOCK_INIT(_sc) sema_init(&(_sc)->sc_lock, 1) 1002 1002 #define ATH_LOCK_DESTROY(_sc) 1003 1003 #define ATH_LOCK(_sc) down(&(_sc)->sc_lock) madwifi/branches/madwifi-hal-0.9.30.13/ath/if_athvar.h
r4110 r4119 999 999 #endif 1000 1000 /* Protects the device from concurrent accesses */ 1001 #define ATH_LOCK_INIT(_sc) init_MUTEX(&(_sc)->sc_lock)1001 #define ATH_LOCK_INIT(_sc) sema_init(&(_sc)->sc_lock, 1) 1002 1002 #define ATH_LOCK_DESTROY(_sc) 1003 1003 #define ATH_LOCK(_sc) down(&(_sc)->sc_lock) madwifi/branches/madwifi-hal-testing/ath/if_athvar.h
r4110 r4119 999 999 #endif 1000 1000 /* Protects the device from concurrent accesses */ 1001 #define ATH_LOCK_INIT(_sc) init_MUTEX(&(_sc)->sc_lock)1001 #define ATH_LOCK_INIT(_sc) sema_init(&(_sc)->sc_lock, 1) 1002 1002 #define ATH_LOCK_DESTROY(_sc) 1003 1003 #define ATH_LOCK(_sc) down(&(_sc)->sc_lock)
