diff options
author | Johannes Berg <johannes.berg@intel.com> | 2016-04-12 13:36:01 +0300 |
---|---|---|
committer | Luca Coelho <luciano.coelho@intel.com> | 2016-05-10 22:34:06 +0300 |
commit | 77d76931343aae1d36bf5d39231db2464abd5aa0 (patch) | |
tree | e42dbb9c11a4e410f038c325339c041a3da83006 /drivers/net/wireless/intel/iwlwifi/iwl-1000.c | |
parent | 39654cb3a6a2a04bb055e62e8ece16d611c2e517 (diff) | |
download | linux-77d76931343aae1d36bf5d39231db2464abd5aa0.tar.xz |
iwlwifi: make configuration structs smaller
Since we have a lot of configuration structs (almost 70) saving
some memory in each one of them leads to an overall saving of
~2.6KiB of memory.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
Diffstat (limited to 'drivers/net/wireless/intel/iwlwifi/iwl-1000.c')
-rw-r--r-- | drivers/net/wireless/intel/iwlwifi/iwl-1000.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/intel/iwlwifi/iwl-1000.c b/drivers/net/wireless/intel/iwlwifi/iwl-1000.c index 5c2aae64d59f..b2573b1d1506 100644 --- a/drivers/net/wireless/intel/iwlwifi/iwl-1000.c +++ b/drivers/net/wireless/intel/iwlwifi/iwl-1000.c @@ -52,7 +52,7 @@ static const struct iwl_base_params iwl1000_base_params = { .num_of_queues = IWLAGN_NUM_QUEUES, .eeprom_size = OTP_LOW_IMAGE_SIZE, - .pll_cfg_val = CSR50_ANA_PLL_CFG_VAL, + .pll_cfg = true, .max_ll_items = OTP_MAX_LL_ITEMS_1000, .shadow_ram_support = false, .led_compensation = 51, |