| OLD | NEW |
| 1 /****************************************************************************** | 1 /****************************************************************************** |
| 2 * | 2 * |
| 3 * Copyright(c) 2008 - 2010 Intel Corporation. All rights reserved. | 3 * Copyright(c) 2008 - 2010 Intel Corporation. All rights reserved. |
| 4 * | 4 * |
| 5 * This program is free software; you can redistribute it and/or modify it | 5 * This program is free software; you can redistribute it and/or modify it |
| 6 * under the terms of version 2 of the GNU General Public License as | 6 * under the terms of version 2 of the GNU General Public License as |
| 7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
| 8 * | 8 * |
| 9 * This program is distributed in the hope that it will be useful, but WITHOUT | 9 * This program is distributed in the hope that it will be useful, but WITHOUT |
| 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 .use_bsm = false, | 258 .use_bsm = false, |
| 259 .max_ll_items = OTP_MAX_LL_ITEMS_1000, | 259 .max_ll_items = OTP_MAX_LL_ITEMS_1000, |
| 260 .shadow_ram_support = false, | 260 .shadow_ram_support = false, |
| 261 .ht_greenfield_support = true, | 261 .ht_greenfield_support = true, |
| 262 .led_compensation = 51, | 262 .led_compensation = 51, |
| 263 .use_rts_for_aggregation = true, /* use rts/cts protection */ | 263 .use_rts_for_aggregation = true, /* use rts/cts protection */ |
| 264 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, | 264 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, |
| 265 .support_ct_kill_exit = true, | 265 .support_ct_kill_exit = true, |
| 266 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_EXT_LONG_THRESHOLD_DEF, | 266 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_EXT_LONG_THRESHOLD_DEF, |
| 267 .chain_noise_scale = 1000, | 267 .chain_noise_scale = 1000, |
| 268 » .monitor_recover_period = IWL_MONITORING_PERIOD, | 268 » .monitor_recover_period = IWL_DEF_MONITORING_PERIOD, |
| 269 .max_event_log_size = 128, | 269 .max_event_log_size = 128, |
| 270 .ucode_tracing = true, | 270 .ucode_tracing = true, |
| 271 .sensitivity_calib_by_driver = true, | 271 .sensitivity_calib_by_driver = true, |
| 272 .chain_noise_calib_by_driver = true, | 272 .chain_noise_calib_by_driver = true, |
| 273 }; | 273 }; |
| 274 | 274 |
| 275 struct iwl_cfg iwl1000_bg_cfg = { | 275 struct iwl_cfg iwl1000_bg_cfg = { |
| 276 .name = "Intel(R) Centrino(R) Wireless-N 1000 BG", | 276 .name = "Intel(R) Centrino(R) Wireless-N 1000 BG", |
| 277 .fw_name_pre = IWL1000_FW_PRE, | 277 .fw_name_pre = IWL1000_FW_PRE, |
| 278 .ucode_api_max = IWL1000_UCODE_API_MAX, | 278 .ucode_api_max = IWL1000_UCODE_API_MAX, |
| (...skipping 11 matching lines...) Expand all Loading... |
| 290 .pll_cfg_val = CSR50_ANA_PLL_CFG_VAL, | 290 .pll_cfg_val = CSR50_ANA_PLL_CFG_VAL, |
| 291 .set_l0s = true, | 291 .set_l0s = true, |
| 292 .use_bsm = false, | 292 .use_bsm = false, |
| 293 .max_ll_items = OTP_MAX_LL_ITEMS_1000, | 293 .max_ll_items = OTP_MAX_LL_ITEMS_1000, |
| 294 .shadow_ram_support = false, | 294 .shadow_ram_support = false, |
| 295 .led_compensation = 51, | 295 .led_compensation = 51, |
| 296 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, | 296 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, |
| 297 .support_ct_kill_exit = true, | 297 .support_ct_kill_exit = true, |
| 298 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_EXT_LONG_THRESHOLD_DEF, | 298 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_EXT_LONG_THRESHOLD_DEF, |
| 299 .chain_noise_scale = 1000, | 299 .chain_noise_scale = 1000, |
| 300 » .monitor_recover_period = IWL_MONITORING_PERIOD, | 300 » .monitor_recover_period = IWL_DEF_MONITORING_PERIOD, |
| 301 .max_event_log_size = 128, | 301 .max_event_log_size = 128, |
| 302 .ucode_tracing = true, | 302 .ucode_tracing = true, |
| 303 .sensitivity_calib_by_driver = true, | 303 .sensitivity_calib_by_driver = true, |
| 304 .chain_noise_calib_by_driver = true, | 304 .chain_noise_calib_by_driver = true, |
| 305 }; | 305 }; |
| 306 | 306 |
| 307 MODULE_FIRMWARE(IWL1000_MODULE_FIRMWARE(IWL1000_UCODE_API_MAX)); | 307 MODULE_FIRMWARE(IWL1000_MODULE_FIRMWARE(IWL1000_UCODE_API_MAX)); |
| OLD | NEW |