ath9k_htc: Update to upstream's commit d19607454d656cb14d8c16dfbf161eebb542e8fe dated...
[linux-libre-firmware.git] / ath9k_htc / target_firmware / magpie_fw_dev / target / adf / adf_os_atomic_pvt.h
index fcbcc2c1a8818d461328433b22968bc24cdbe60a..0225ccd0c9d140a2db7a57331c657fac98d2f8c0 100755 (executable)
 #ifndef __ADF_OS_ATOMIC_PVT_H
 #define __ADF_OS_ATOMIC_PVT_H
 
-//#include <sys/types.h>
-//#include <machine/atomic.h>
-
-#include <adf_os_types.h>
-
 typedef a_uint32_t  __adf_os_atomic_t;
 
 /**
  * @brief This initiallizes the varriable to zero
- * 
+ *
  * @param __adf_os_atomic_t (int pointer)
- * 
+ *
  */
 static inline void
 __adf_os_atomic_init(__adf_os_atomic_t *v)
@@ -78,7 +73,7 @@ static inline void
 __adf_os_atomic_write(__adf_os_atomic_t *v,a_uint32_t p)
 {
        atomic_store_rel_int(v,(int)p);
-} 
+}
  */
 
 #endif