diff options
author | Henrique de Moraes Holschuh <hmh@hmh.eng.br> | 2008-10-09 17:15:32 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-10-31 19:00:10 -0400 |
commit | 176707997bc3da2c4e32715c35cfebba0334ed68 (patch) | |
tree | 17999628a3586c7bf656c83e61f77b7da0d06e46 /net/rfkill | |
parent | d003922dab6a66027344a787e9846ecf35a706a8 (diff) |
rfkill: honour EPO state when resuming a rfkill controller
rfkill_resume() would always restore the rfkill controller state to its
pre-suspend state.
Now that we know when we are under EPO, kick the rfkill controller to
SOFT_BLOCKED state instead of to its pre-suspend state when it is resumed
while EPO mode is active.
Signed-off-by: Henrique de Moraes Holschuh <hmh@hmh.eng.br>
Cc: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/rfkill')
-rw-r--r-- | net/rfkill/rfkill.c | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/net/rfkill/rfkill.c b/net/rfkill/rfkill.c index e348eab756f3..c9180c8771c6 100644 --- a/net/rfkill/rfkill.c +++ b/net/rfkill/rfkill.c | |||
@@ -581,8 +581,17 @@ static int rfkill_resume(struct device *dev) | |||
581 | 581 | ||
582 | dev->power.power_state.event = PM_EVENT_ON; | 582 | dev->power.power_state.event = PM_EVENT_ON; |
583 | 583 | ||
584 | /* restore radio state AND notify everybody */ | 584 | /* |
585 | rfkill_toggle_radio(rfkill, rfkill->state, 1); | 585 | * If we are under EPO, kick transmitter offline, |
586 | * otherwise restore to pre-suspend state. | ||
587 | * | ||
588 | * Issue a notification in any case | ||
589 | */ | ||
590 | rfkill_toggle_radio(rfkill, | ||
591 | rfkill_epo_lock_active ? | ||
592 | RFKILL_STATE_SOFT_BLOCKED : | ||
593 | rfkill->state, | ||
594 | 1); | ||
586 | 595 | ||
587 | mutex_unlock(&rfkill->mutex); | 596 | mutex_unlock(&rfkill->mutex); |
588 | } | 597 | } |