summaryrefslogtreecommitdiffstats
path: root/drivers/rtc/interface.c
diff options
context:
space:
mode:
authorThomas Gleixner2011-07-22 11:12:51 +0200
committerJohn Stultz2011-07-26 23:50:01 +0200
commit6e7a333eaa522ef73be01caec7a01521490aaf00 (patch)
tree76e9ffac58da9bc22327a38ea5e40fc5aa18c530 /drivers/rtc/interface.c
parentrtc: Fix hrtimer deadlock (diff)
downloadkernel-qcow2-linux-6e7a333eaa522ef73be01caec7a01521490aaf00.tar.gz
kernel-qcow2-linux-6e7a333eaa522ef73be01caec7a01521490aaf00.tar.xz
kernel-qcow2-linux-6e7a333eaa522ef73be01caec7a01521490aaf00.zip
rtc: Limit RTC PIE frequency
The RTC pie hrtimer is self rearming. We really need to limit the frequency to something sensible. Thus limit it to the 8192Hz max value from the rtc man documentation Cc: Willy Tarreau <w@1wt.eu> Cc: stable@kernel.org Signed-off-by: Thomas Gleixner <tglx@linutronix.de> [jstultz: slightly reworked to use RTC_MAX_FREQ value] Signed-off-by: John Stultz <john.stultz@linaro.org>
Diffstat (limited to 'drivers/rtc/interface.c')
-rw-r--r--drivers/rtc/interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/interface.c b/drivers/rtc/interface.c
index a1ba2caa8308..44e91e598f8d 100644
--- a/drivers/rtc/interface.c
+++ b/drivers/rtc/interface.c
@@ -708,7 +708,7 @@ int rtc_irq_set_freq(struct rtc_device *rtc, struct rtc_task *task, int freq)
int err = 0;
unsigned long flags;
- if (freq <= 0)
+ if (freq <= 0 || freq > RTC_MAX_FREQ)
return -EINVAL;
retry:
spin_lock_irqsave(&rtc->irq_task_lock, flags);