Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 314167
b: refs/heads/master
c: 648f6ed
h: refs/heads/master
i:
  314165: 3d31ee1
  314163: 666633c
  314159: 99a1da4
v: v3
  • Loading branch information
Luciano Coelho committed Jun 8, 2012
1 parent fdb58a3 commit 03edac3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 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: 9c6ead570c6b88b865fca15bdc0d09e2d90d2130
refs/heads/master: 648f6ed9f7f0e4d56d65266734e748a02f8e2df7
2 changes: 1 addition & 1 deletion trunk/drivers/net/wireless/ti/wl12xx/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ static struct wlcore_conf wl12xx_conf = {
},
.pm_config = {
.host_clk_settling_time = 5000,
.host_fast_wakeup_support = false
.host_fast_wakeup_support = CONF_FAST_WAKEUP_DISABLE,
},
.roam_trigger = {
.trigger_pacing = 1,
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/net/wireless/ti/wl18xx/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ static struct wlcore_conf wl18xx_conf = {
},
.pm_config = {
.host_clk_settling_time = 5000,
.host_fast_wakeup_support = false
.host_fast_wakeup_support = CONF_FAST_WAKEUP_DISABLE,
},
.roam_trigger = {
.trigger_pacing = 1,
Expand Down
9 changes: 7 additions & 2 deletions trunk/drivers/net/wireless/ti/wlcore/conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -981,6 +981,11 @@ struct conf_itrim_settings {
u32 timeout;
};

enum conf_fast_wakeup {
CONF_FAST_WAKEUP_ENABLE,
CONF_FAST_WAKEUP_DISABLE,
};

struct conf_pm_config_settings {
/*
* Host clock settling time
Expand All @@ -992,9 +997,9 @@ struct conf_pm_config_settings {
/*
* Host fast wakeup support
*
* Range: true, false
* Range: enum conf_fast_wakeup
*/
bool host_fast_wakeup_support;
u8 host_fast_wakeup_support;
};

struct conf_roam_trigger_settings {
Expand Down

0 comments on commit 03edac3

Please sign in to comment.