aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorAlan Jenkins <alan-jenkins@tuffmail.co.uk>2009-06-08 08:12:23 -0400
committerJohn W. Linville <linville@tuxdriver.com>2009-06-10 13:28:37 -0400
commit908209c160da8ecb68052111972b7a21310eac3f (patch)
treea888e1a29212e88d7182fa3f438c6f348362c432 /net
parent869fb3a46cd18235e6f176328a2d8085ffe2c704 (diff)
rfkill: don't impose global states on resume (just restore the previous states)
Once rfkill-input is disabled, the "global" states will only be used as default initial states. Since the states will always be the same after resume, we shouldn't generate events on resume. Signed-off-by: Alan Jenkins <alan-jenkins@tuffmail.co.uk> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net')
-rw-r--r--net/rfkill/core.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/net/rfkill/core.c b/net/rfkill/core.c
index fa430bd03f14..4e68ab439d5d 100644
--- a/net/rfkill/core.c
+++ b/net/rfkill/core.c
@@ -728,15 +728,11 @@ static int rfkill_resume(struct device *dev)
728 struct rfkill *rfkill = to_rfkill(dev); 728 struct rfkill *rfkill = to_rfkill(dev);
729 bool cur; 729 bool cur;
730 730
731 mutex_lock(&rfkill_global_mutex); 731 cur = !!(rfkill->state & RFKILL_BLOCK_SW);
732 cur = rfkill_global_states[rfkill->type].cur;
733 rfkill_set_block(rfkill, cur); 732 rfkill_set_block(rfkill, cur);
734 mutex_unlock(&rfkill_global_mutex);
735 733
736 rfkill->suspended = false; 734 rfkill->suspended = false;
737 735
738 schedule_work(&rfkill->uevent_work);
739
740 rfkill_resume_polling(rfkill); 736 rfkill_resume_polling(rfkill);
741 737
742 return 0; 738 return 0;