remove all trailing whitespaces in one run
[open-ath9k-htc-firmware.git] / target_firmware / magpie_fw_dev / target / inc / adf_os_module.h
index f17f6313c8f180af97c234f6e1e6c45e27b74749..2ad690f1e8720f9075a0aac31b07dd982f3ae73d 100755 (executable)
@@ -1,3 +1,37 @@
+/*
+ * Copyright (c) 2013 Qualcomm Atheros, Inc.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted (subject to the limitations in the
+ * disclaimer below) provided that the following conditions are met:
+ *
+ *  * Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ *
+ *  * Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the
+ *    distribution.
+ *
+ *  * Neither the name of Qualcomm Atheros nor the names of its
+ *    contributors may be used to endorse or promote products derived
+ *    from this software without specific prior written permission.
+ *
+ * NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE
+ * GRANTED BY THIS LICENSE.  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT
+ * HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
+ * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+ * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
+ * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
+ * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
 /**
  * @ingroup adf_os_public
  * @file adf_os_module.h
@@ -13,41 +47,36 @@ typedef a_status_t (*module_init_func_t)(void);
 
 /**
  * @brief Specify the module's entry point.
- */ 
+ */
 #define adf_os_virt_module_init(_mod_init_func)  __adf_os_virt_module_init(_mod_init_func)
 
 /**
  * @brief Specify the module's exit point.
- */ 
+ */
 #define adf_os_virt_module_exit(_mod_exit_func)  __adf_os_virt_module_exit(_mod_exit_func)
 
-/**
- * @brief Specify the module's name.
- */ 
-#define adf_os_virt_module_name(_name)      __adf_os_virt_module_name(_name)
-
 /**
  * @brief Specify the module's dependency on another module.
- */ 
+ */
 #define adf_os_module_dep(_name,_dep)       __adf_os_module_dep(_name,_dep)
 
 /**
  * @brief Export a symbol from a module.
- */ 
+ */
 #define adf_os_export_symbol(_sym)         __adf_os_export_symbol(_sym)
-     
+
 /**
  * @brief Module parameter of type integer.
- */ 
+ */
 #define ADF_OS_PARAM_TYPE_INT32             __ADF_OS_PARAM_TYPE_INT32
 
 /**
  * @brief Module parameter of type string.
- */ 
+ */
 #define ADF_OS_PARAM_TYPE_STRING            __ADF_OS_PARAM_TYPE_STRING
 
 /**
- * @brief Declare a module parameter. 
+ * @brief Declare a module parameter.
  *
  * @param[in] name name of the parameter
  * @param[in] type type of the parameter
@@ -57,8 +86,8 @@ typedef a_status_t (*module_init_func_t)(void);
  * Only two types are supported
  * ADF_OS_PARAM_TYPE_STRING
  * ADF_OS_PARAM_TYPE_INT32
- * For example, say, the parameters name "my_int" and "my_name" are of 
- * variables of type int and string respectively. Then you would declare them 
+ * For example, say, the parameters name "my_int" and "my_name" are of
+ * variables of type int and string respectively. Then you would declare them
  * as follows:
  * @code
  * adf_os_declare_param(my_int, ADF_OS_PARAM_TYPE_INT32);
@@ -70,7 +99,7 @@ typedef a_status_t (*module_init_func_t)(void);
  * adf_os_read_param(my_name, &softc->sc_my_name);
  * @endcode
  *
- * or 
+ * or
  * @code
  * st = adf_os_read_param(my_int, &softc->sc_my_int);
  * @endcode