Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-01-04 | iwlegacy: off by one in iwl3945_hw_build_tx_cmd_rate() | Dan Carpenter | 1 | -1/+1 | |
We use "rate_index" like this: rate = iwl3945_rates[rate_index].plcp; The iwl3945_rates[] array has IWL_RATE_COUNT_3945 elements so the limit here is off by one. Signed-off-by: Dan Carpenter <[email protected]> Signed-off-by: Stanislaw Gruszka <[email protected]> Signed-off-by: John W. Linville <[email protected]> | |||||
2012-01-04 | iwlegacy: remove iwl-sta.c | Stanislaw Gruszka | 1 | -817/+0 | |
I forgot to remove this file before. Signed-off-by: Stanislaw Gruszka <[email protected]> Signed-off-by: John W. Linville <[email protected]> | |||||
2011-12-06 | iwlegacy: Use kcalloc instead of kzalloc to allocate array | Thomas Meyer | 1 | -3/+2 | |
The advantage of kcalloc is, that will prevent integer overflows which could result from the multiplication of number of elements and size and it is also a bit nicer to read. The semantic patch that makes this change is available in https://lkml.org/lkml/2011/11/25/107 Signed-off-by: Thomas Meyer <[email protected]> Signed-off-by: John W. Linville <[email protected]> | |||||
2011-11-22 | Merge branch 'master' of ↵ | John W. Linville | 2 | -0/+2 | |
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux Conflicts: drivers/net/wireless/iwlegacy/iwl-debugfs.c drivers/net/wireless/iwlegacy/iwl-rx.c drivers/net/wireless/iwlegacy/iwl-scan.c drivers/net/wireless/iwlegacy/iwl-tx.c include/net/bluetooth/bluetooth.h | |||||
2011-11-16 | iwlegacy: debugfs_ops should depend on CONFIG_IWLEGACY_DEBUGFS | Greg Dietsche | 5 | -42/+8 | |
Only setup structs related to debugfs_ops when CONFIG_IWLEGACY_DEBUGFS is set. Signed-off-by: Greg Dietsche <[email protected]> Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-16 | iwlegacy: 4965-rs: cleanup il4965_rs_sta_dbgfs_rate_scale_data_read | Greg Dietsche | 1 | -7/+1 | |
1) remove ret local var and return the result directly 2) remove il since it is not used Signed-off-by: Greg Dietsche <[email protected]> Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-16 | iwlegacy: 4965-rs: don't return rate from il4965_rs_update_rate_tbl | Greg Dietsche | 1 | -9/+3 | |
1) don't return rate from il4965_rs_update_rate_tbl 2) fix up il4965_rs_rate_scale_perform Signed-off-by: Greg Dietsche <[email protected]> Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-16 | iwlegacy: 4965-rs: il4965_rs_alloc_sta: remove lq_sta local var | Greg Dietsche | 1 | -4/+1 | |
remove the lq_sta local variable and return the result directly in il4965_rs_alloc_sta Signed-off-by: Greg Dietsche <[email protected]> Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-16 | iwlegacy: 4965-rs: remove unnecessary null check for sta and lq_sta | Greg Dietsche | 1 | -3/+0 | |
both sta and lq_sta are guaranteed to be not null in the calling function so we don't need to check them here. Signed-off-by: Greg Dietsche <[email protected]> Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-16 | iwlegacy: 4965-rs: remove null check on sta in il4965_rs_tx_status | Greg Dietsche | 1 | -1/+1 | |
the null check on sta in il4965_rs_tx_status is not necessary Signed-off-by: Greg Dietsche <[email protected]> Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-16 | iwlegacy: 4965: remove vif null check in request_scan | Greg Dietsche | 1 | -2/+1 | |
remove null check on vif in il4965_request_scan Signed-off-by: Greg Dietsche <[email protected]> Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: remove unused IL_AC_UNSET define | Stanislaw Gruszka | 1 | -2/+0 | |
Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: change IL_ERR to D_HT in iwl4965_rs_tl_turn_on_agg_for_tid | Greg Dietsche | 1 | -4/+4 | |
This message should be a debug message and not an error. Signed-off-by: Greg Dietsche <[email protected]> Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: change IL_WARN to D_HT in il4965_tx_agg_start | Greg Dietsche | 1 | -1/+1 | |
This message should be a debug message and not a warning. Signed-off-by: Greg Dietsche <[email protected]> Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: checkpatch.pl fixes | Stanislaw Gruszka | 14 | -411/+297 | |
Fix most checkpatch.pl ERRORs and some WARNINGs. Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: indentions and whitespaces | Stanislaw Gruszka | 17 | -6456/+6439 | |
Process iwlegacy source files using: indent -npro -l500 -nhnl indent -npro -kr -i8 -ts8 -sob -l80 -nbbo -ss -ncs -cp1 -il0 -psl Plus manual compilation fixes. Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: merge iwl-debug.h into common.h | Stanislaw Gruszka | 7 | -209/+165 | |
Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: rename iwl-debug.c to debug.c | Stanislaw Gruszka | 2 | -1/+1 | |
Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: merge iwl-fh.h into 4965.h | Stanislaw Gruszka | 2 | -418/+351 | |
Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: use FH49_ prefix in 4965 code | Stanislaw Gruszka | 4 | -153/+153 | |
Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: use FH39_ prefix in 3945 code | Stanislaw Gruszka | 2 | -3/+3 | |
Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: rename iwl-prph.h to prph.h | Stanislaw Gruszka | 3 | -2/+1 | |
Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: merge iwl-{eeprom,led}.h into common.h | Stanislaw Gruszka | 8 | -412/+303 | |
Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: merge iwl-power.h into common.h | Stanislaw Gruszka | 5 | -58/+12 | |
Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: merge iwl-legacy-rs.h into common.h | Stanislaw Gruszka | 2 | -473/+442 | |
Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: remove iwl-helpers.h | Stanislaw Gruszka | 1 | -187/+0 | |
This file was already merged into common.h Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: merge common header files | Stanislaw Gruszka | 18 | -2023/+2003 | |
Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: rename iwl-core.h to common.h | Stanislaw Gruszka | 11 | -10/+10 | |
Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: rename iwl-csr.h to csr.h | Stanislaw Gruszka | 3 | -2/+1 | |
Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: move IL_MASK | Stanislaw Gruszka | 2 | -3/+2 | |
Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: remove il_ieee80211_get_hw_conf | Stanislaw Gruszka | 4 | -9/+3 | |
Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: rename iwl-commands.h to commands.h | Stanislaw Gruszka | 7 | -14/+5 | |
On the way remove also not needed iwl-fh.h include. Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: rename module name | Stanislaw Gruszka | 1 | -4/+4 | |
Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: merge common .c files | Stanislaw Gruszka | 9 | -2678/+3147 | |
Merge iwl-{tx,rx,sta,scan,power,eeprom,led,hcmd}.c into common.c . Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: rename iwl-core.c to common.c | Stanislaw Gruszka | 2 | -1/+1 | |
Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: rename other handlers | Stanislaw Gruszka | 10 | -53/+53 | |
Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: s/rx_reply/hdl/ | Stanislaw Gruszka | 8 | -33/+33 | |
Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: s/rx_handler/handler/ | Stanislaw Gruszka | 9 | -63/+63 | |
Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: rename REPLY_ to N_ or C_ | Stanislaw Gruszka | 17 | -317/+317 | |
Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: s/STATISTICS/STATS/ | Stanislaw Gruszka | 13 | -50/+50 | |
Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: s/STATUS_/S_/ | Stanislaw Gruszka | 14 | -245/+245 | |
Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: move iwl-3945-{,hw,fh,debugfs}.h to 3945.h | Stanislaw Gruszka | 10 | -855/+675 | |
Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: move iwl-4965-{,hw,debugfs,calib}.h to 4965.h | Stanislaw Gruszka | 14 | -477/+277 | |
Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: add accidentally removed comments | Stanislaw Gruszka | 1 | -0/+27 | |
Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: rename iwl-3945-{rs,debugfs}.c to 3945-{rs,debug}.c | Stanislaw Gruszka | 3 | -2/+2 | |
Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: rename iwl-4965-{rs,calib,debugfs}.c to 4965-{rs,calib,debug}.c | Stanislaw Gruszka | 4 | -3/+2 | |
Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: merge iwl-4965-lib.c into 4965-mac.c | Stanislaw Gruszka | 3 | -1195/+1153 | |
Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: merge iwl-4965-{tx,rx}.c into 4965-mac.c | Stanislaw Gruszka | 4 | -1588/+1478 | |
Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: merge iwl-4965-sta.c into 4965-mac.c | Stanislaw Gruszka | 3 | -713/+677 | |
Signed-off-by: Stanislaw Gruszka <[email protected]> | |||||
2011-11-15 | iwlegacy: merge iwl-4965-ucode.c into 4965.c | Stanislaw Gruszka | 3 | -167/+126 | |
Signed-off-by: Stanislaw Gruszka <[email protected]> |