Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Side by Side Diff: chromeos/compat-wireless/drivers/net/wireless/iwlwifi/iwl-4965.c

Issue 5326002: Update compat-wireless to 2.6.36-5-spn (Closed) Base URL: http://git.chromium.org/git/kernel.git@master
Patch Set: Fixes for !ACK handling, missing local changes, log message fixes Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /****************************************************************************** 1 /******************************************************************************
2 * 2 *
3 * Copyright(c) 2003 - 2010 Intel Corporation. All rights reserved. 3 * Copyright(c) 2003 - 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 2304 matching lines...) Expand 10 before | Expand all | Expand 10 after
2315 .valid_rx_ant = ANT_ABC, 2315 .valid_rx_ant = ANT_ABC,
2316 .pll_cfg_val = 0, 2316 .pll_cfg_val = 0,
2317 .set_l0s = true, 2317 .set_l0s = true,
2318 .use_bsm = true, 2318 .use_bsm = true,
2319 .use_isr_legacy = true, 2319 .use_isr_legacy = true,
2320 .ht_greenfield_support = false, 2320 .ht_greenfield_support = false,
2321 .broken_powersave = true, 2321 .broken_powersave = true,
2322 .led_compensation = 61, 2322 .led_compensation = 61,
2323 .chain_noise_num_beacons = IWL4965_CAL_NUM_BEACONS, 2323 .chain_noise_num_beacons = IWL4965_CAL_NUM_BEACONS,
2324 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, 2324 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
2325 » .monitor_recover_period = IWL_MONITORING_PERIOD, 2325 » .monitor_recover_period = IWL_DEF_MONITORING_PERIOD,
2326 .temperature_kelvin = true, 2326 .temperature_kelvin = true,
2327 .max_event_log_size = 512, 2327 .max_event_log_size = 512,
2328 .tx_power_by_driver = true, 2328 .tx_power_by_driver = true,
2329 .ucode_tracing = true, 2329 .ucode_tracing = true,
2330 .sensitivity_calib_by_driver = true, 2330 .sensitivity_calib_by_driver = true,
2331 .chain_noise_calib_by_driver = true, 2331 .chain_noise_calib_by_driver = true,
2332 /* 2332 /*
2333 * Force use of chains B and C for scan RX on 5 GHz band 2333 * Force use of chains B and C for scan RX on 5 GHz band
2334 * because the device has off-channel reception on chain A. 2334 * because the device has off-channel reception on chain A.
2335 */ 2335 */
2336 .scan_rx_antennas[IEEE80211_BAND_5GHZ] = ANT_BC, 2336 .scan_rx_antennas[IEEE80211_BAND_5GHZ] = ANT_BC,
2337 }; 2337 };
2338 2338
2339 /* Module firmware */ 2339 /* Module firmware */
2340 MODULE_FIRMWARE(IWL4965_MODULE_FIRMWARE(IWL4965_UCODE_API_MAX)); 2340 MODULE_FIRMWARE(IWL4965_MODULE_FIRMWARE(IWL4965_UCODE_API_MAX));
2341 2341
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698