diff options
author | Johannes Berg <johannes.berg@intel.com> | 2010-09-22 12:02:03 -0400 |
---|---|---|
committer | Wey-Yi Guy <wey-yi.w.guy@intel.com> | 2010-10-07 18:51:11 -0400 |
commit | 57934dc1fb7ef65a8a0f5d7a1578536b36043c0a (patch) | |
tree | 7ebcdb90cd485c56bb9e7cd27fb703fcf06313e8 /drivers/net/wireless/iwlwifi/iwl-agn-tt.c | |
parent | 69fdb710b29d096bc50123f7c97891e31ffe45f9 (diff) |
iwlwifi: remove spurious exports
A number of exports, especially related to
thermal throttling, are unnecessary because
the code lives in the same module that it
is used in, so remove them.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-agn-tt.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-agn-tt.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn-tt.c b/drivers/net/wireless/iwlwifi/iwl-agn-tt.c index 0c6c4d969706..e3a8216a033c 100644 --- a/drivers/net/wireless/iwlwifi/iwl-agn-tt.c +++ b/drivers/net/wireless/iwlwifi/iwl-agn-tt.c | |||
@@ -571,7 +571,6 @@ void iwl_tt_enter_ct_kill(struct iwl_priv *priv) | |||
571 | IWL_DEBUG_POWER(priv, "Queueing critical temperature enter.\n"); | 571 | IWL_DEBUG_POWER(priv, "Queueing critical temperature enter.\n"); |
572 | queue_work(priv->workqueue, &priv->ct_enter); | 572 | queue_work(priv->workqueue, &priv->ct_enter); |
573 | } | 573 | } |
574 | EXPORT_SYMBOL(iwl_tt_enter_ct_kill); | ||
575 | 574 | ||
576 | void iwl_tt_exit_ct_kill(struct iwl_priv *priv) | 575 | void iwl_tt_exit_ct_kill(struct iwl_priv *priv) |
577 | { | 576 | { |
@@ -581,7 +580,6 @@ void iwl_tt_exit_ct_kill(struct iwl_priv *priv) | |||
581 | IWL_DEBUG_POWER(priv, "Queueing critical temperature exit.\n"); | 580 | IWL_DEBUG_POWER(priv, "Queueing critical temperature exit.\n"); |
582 | queue_work(priv->workqueue, &priv->ct_exit); | 581 | queue_work(priv->workqueue, &priv->ct_exit); |
583 | } | 582 | } |
584 | EXPORT_SYMBOL(iwl_tt_exit_ct_kill); | ||
585 | 583 | ||
586 | static void iwl_bg_tt_work(struct work_struct *work) | 584 | static void iwl_bg_tt_work(struct work_struct *work) |
587 | { | 585 | { |
@@ -608,7 +606,6 @@ void iwl_tt_handler(struct iwl_priv *priv) | |||
608 | IWL_DEBUG_POWER(priv, "Queueing thermal throttling work.\n"); | 606 | IWL_DEBUG_POWER(priv, "Queueing thermal throttling work.\n"); |
609 | queue_work(priv->workqueue, &priv->tt_work); | 607 | queue_work(priv->workqueue, &priv->tt_work); |
610 | } | 608 | } |
611 | EXPORT_SYMBOL(iwl_tt_handler); | ||
612 | 609 | ||
613 | /* Thermal throttling initialization | 610 | /* Thermal throttling initialization |
614 | * For advance thermal throttling: | 611 | * For advance thermal throttling: |
@@ -678,7 +675,6 @@ void iwl_tt_initialize(struct iwl_priv *priv) | |||
678 | priv->thermal_throttle.advanced_tt = false; | 675 | priv->thermal_throttle.advanced_tt = false; |
679 | } | 676 | } |
680 | } | 677 | } |
681 | EXPORT_SYMBOL(iwl_tt_initialize); | ||
682 | 678 | ||
683 | /* cleanup thermal throttling management related memory and timer */ | 679 | /* cleanup thermal throttling management related memory and timer */ |
684 | void iwl_tt_exit(struct iwl_priv *priv) | 680 | void iwl_tt_exit(struct iwl_priv *priv) |
@@ -701,4 +697,3 @@ void iwl_tt_exit(struct iwl_priv *priv) | |||
701 | tt->transaction = NULL; | 697 | tt->transaction = NULL; |
702 | } | 698 | } |
703 | } | 699 | } |
704 | EXPORT_SYMBOL(iwl_tt_exit); | ||