From: Hans de Goede Date: Sun, 17 Nov 2013 13:00:25 +0000 (+0100) Subject: dell-laptop: Wait less long before updating rfkill after an rfkill keypress X-Git-Tag: v3.13-rc2~36^2~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=26c22d63a70f62e0832c6d9f2a2690ab0155d584;p=kernel%2Fkernel-generic.git dell-laptop: Wait less long before updating rfkill after an rfkill keypress Some time is needed for the BIOS to do its work, but 250ms should be plenty. Signed-off-by: Hans de Goede Signed-off-by: Matthew Garrett --- diff --git a/drivers/platform/x86/dell-laptop.c b/drivers/platform/x86/dell-laptop.c index b33b779..fe20f67 100644 --- a/drivers/platform/x86/dell-laptop.c +++ b/drivers/platform/x86/dell-laptop.c @@ -759,7 +759,7 @@ static bool dell_laptop_i8042_filter(unsigned char data, unsigned char str, switch (data) { case 0x8: schedule_delayed_work(&dell_rfkill_work, - round_jiffies_relative(HZ)); + round_jiffies_relative(HZ / 4)); break; } extended = false;