From: Oleksij Rempel Date: Sat, 11 May 2013 15:44:50 +0000 (+0200) Subject: remove adf_os_virt_module_name X-Git-Tag: 1.4.0~12^2^2~22 X-Git-Url: https://jxself.org/git/?p=open-ath9k-htc-firmware.git;a=commitdiff_plain;h=cd658a7283d0bdb253564dbf36fe26b90746d99b remove adf_os_virt_module_name Signed-off-by: Oleksij Rempel --- diff --git a/target_firmware/magpie_fw_dev/target/adf/adf_os_module_pvt.h b/target_firmware/magpie_fw_dev/target/adf/adf_os_module_pvt.h index 9ce6c55..08a9617 100755 --- a/target_firmware/magpie_fw_dev/target/adf/adf_os_module_pvt.h +++ b/target_firmware/magpie_fw_dev/target/adf/adf_os_module_pvt.h @@ -67,12 +67,6 @@ */ #define __adf_os_virt_module_exit(_fn) -/** - * initiallize a generic module - */ -#define __adf_os_virt_module_name(_name) - - #define __adf_os_module_dep(_name, _dep) #endif diff --git a/target_firmware/magpie_fw_dev/target/htc/htc_tgt.c b/target_firmware/magpie_fw_dev/target/htc/htc_tgt.c index 978dff7..313b09e 100755 --- a/target_firmware/magpie_fw_dev/target/htc/htc_tgt.c +++ b/target_firmware/magpie_fw_dev/target/htc/htc_tgt.c @@ -73,4 +73,3 @@ adf_os_virt_module_init(init_htc_tgt); adf_os_virt_module_exit(exit_htc_tgt); adf_os_module_dep(htc_tgt, adf_net); adf_os_module_dep(htc_tgt, inproc_hif); -adf_os_virt_module_name(htc_tgt); diff --git a/target_firmware/magpie_fw_dev/target/inc/adf_os_module.h b/target_firmware/magpie_fw_dev/target/inc/adf_os_module.h index e9fb4d9..ea8d32a 100755 --- a/target_firmware/magpie_fw_dev/target/inc/adf_os_module.h +++ b/target_firmware/magpie_fw_dev/target/inc/adf_os_module.h @@ -55,11 +55,6 @@ typedef a_status_t (*module_init_func_t)(void); */ #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. */ diff --git a/target_firmware/wlan/ah_osdep.c b/target_firmware/wlan/ah_osdep.c index 48b526c..1f3a37f 100755 --- a/target_firmware/wlan/ah_osdep.c +++ b/target_firmware/wlan/ah_osdep.c @@ -149,4 +149,3 @@ enum { adf_os_module_dep(hal, adf_net); adf_os_module_dep(hal, hal); -adf_os_virt_module_name(hal);