Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 352165
b: refs/heads/master
c: 78e2806
h: refs/heads/master
i:
  352163: 0aec2a8
v: v3
  • Loading branch information
Eliad Peller authored and Luciano Coelho committed Nov 27, 2012
1 parent abe630d commit a3123cd
Show file tree
Hide file tree
Showing 18 changed files with 1,210 additions and 599 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e9b9d4550733dc322cd0d191e0423a480d9180ef
refs/heads/master: 78e28062fea51c62280cd17fe6143ed583f83ba0
2 changes: 1 addition & 1 deletion trunk/drivers/net/wireless/ti/wl12xx/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
wl12xx-objs = main.o cmd.o acx.o debugfs.o
wl12xx-objs = main.o cmd.o acx.o debugfs.o scan.o

obj-$(CONFIG_WL12XX) += wl12xx.o
11 changes: 11 additions & 0 deletions trunk/drivers/net/wireless/ti/wl12xx/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
#include "reg.h"
#include "cmd.h"
#include "acx.h"
#include "scan.h"
#include "debugfs.h"

static char *fref_param;
Expand Down Expand Up @@ -698,6 +699,11 @@ static int wl12xx_identify_chip(struct wl1271 *wl)
goto out;
}

/* common settings */
wl->scan_templ_id_2_4 = CMD_TEMPL_APP_PROBE_REQ_2_4_LEGACY;
wl->scan_templ_id_5 = CMD_TEMPL_APP_PROBE_REQ_5_LEGACY;
wl->sched_scan_templ_id_2_4 = CMD_TEMPL_CFG_PROBE_REQ_2_4;
wl->sched_scan_templ_id_5 = CMD_TEMPL_CFG_PROBE_REQ_5;
out:
return ret;
}
Expand Down Expand Up @@ -1618,6 +1624,11 @@ static struct wlcore_ops wl12xx_ops = {
.set_rx_csum = NULL,
.ap_get_mimo_wide_rate_mask = NULL,
.debugfs_init = wl12xx_debugfs_add_files,
.scan_start = wl12xx_scan_start,
.scan_stop = wl12xx_scan_stop,
.scan_completed = wl12xx_scan_completed,
.sched_scan_start = wl12xx_sched_scan_start,
.sched_scan_stop = wl12xx_scan_sched_scan_stop,
.get_spare_blocks = wl12xx_get_spare_blocks,
.set_key = wl12xx_set_key,
.pre_pkt_send = NULL,
Expand Down
Loading

0 comments on commit a3123cd

Please sign in to comment.