aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/iwlwifi/iwl-4965.c
diff options
context:
space:
mode:
authorTomas Winkler <tomas.winkler@intel.com>2008-04-15 19:01:42 -0400
committerJohn W. Linville <linville@tuxdriver.com>2008-04-16 16:00:00 -0400
commit3c424c281a9887733ab936477c327cdb2a7ae367 (patch)
tree22da3f19683ff86fbf7b1c9024d8b01f3bf50d42 /drivers/net/wireless/iwlwifi/iwl-4965.c
parentfed9017e03f23098137716bd6010772ac1aa8a80 (diff)
iwlwifi: introduce host commands callbacks
This patch adds place holder for host command handlers for supporting different implementations per HW Signed-off-by: Tomas Winkler <tomas.winkler@intel.com> Signed-off-by: Reinette Chatre <reinette.chatre@intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-4965.c')
-rw-r--r--drivers/net/wireless/iwlwifi/iwl-4965.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-4965.c b/drivers/net/wireless/iwlwifi/iwl-4965.c
index 4a40109d4aa0..9fa803ad9cf7 100644
--- a/drivers/net/wireless/iwlwifi/iwl-4965.c
+++ b/drivers/net/wireless/iwlwifi/iwl-4965.c
@@ -4905,6 +4905,10 @@ void iwl4965_hw_cancel_deferred_work(struct iwl_priv *priv)
4905 cancel_delayed_work(&priv->init_alive_start); 4905 cancel_delayed_work(&priv->init_alive_start);
4906} 4906}
4907 4907
4908
4909static struct iwl_hcmd_ops iwl4965_hcmd = {
4910};
4911
4908static struct iwl_hcmd_utils_ops iwl4965_hcmd_utils = { 4912static struct iwl_hcmd_utils_ops iwl4965_hcmd_utils = {
4909 .enqueue_hcmd = iwl4965_enqueue_hcmd, 4913 .enqueue_hcmd = iwl4965_enqueue_hcmd,
4910}; 4914};
@@ -4927,6 +4931,7 @@ static struct iwl_lib_ops iwl4965_lib = {
4927 4931
4928static struct iwl_ops iwl4965_ops = { 4932static struct iwl_ops iwl4965_ops = {
4929 .lib = &iwl4965_lib, 4933 .lib = &iwl4965_lib,
4934 .hcmd = &iwl4965_hcmd,
4930 .utils = &iwl4965_hcmd_utils, 4935 .utils = &iwl4965_hcmd_utils,
4931}; 4936};
4932 4937