mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-26 00:21:17 +00:00
drivers/rtc/interface.c: return -EBUSY, not -EACCES when device is busy
If rtc->irq_task is non-NULL and task is NULL, they always rtc_irq_set_freq(), whenever err is set to -EBUSY it will then immediately be set to -EACCES, misleading the caller as to the underlying problem. Signed-off-by: Chris Brand <chris.brand@broadcom.com> Acked-by: Alessandro Zummo <a.zummo@towertech.it> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
5ee67484de
commit
0734e27f0b
1 changed files with 4 additions and 4 deletions
|
@ -698,9 +698,9 @@ retry:
|
||||||
spin_lock_irqsave(&rtc->irq_task_lock, flags);
|
spin_lock_irqsave(&rtc->irq_task_lock, flags);
|
||||||
if (rtc->irq_task != NULL && task == NULL)
|
if (rtc->irq_task != NULL && task == NULL)
|
||||||
err = -EBUSY;
|
err = -EBUSY;
|
||||||
if (rtc->irq_task != task)
|
else if (rtc->irq_task != task)
|
||||||
err = -EACCES;
|
err = -EACCES;
|
||||||
if (!err) {
|
else {
|
||||||
if (rtc_update_hrtimer(rtc, enabled) < 0) {
|
if (rtc_update_hrtimer(rtc, enabled) < 0) {
|
||||||
spin_unlock_irqrestore(&rtc->irq_task_lock, flags);
|
spin_unlock_irqrestore(&rtc->irq_task_lock, flags);
|
||||||
cpu_relax();
|
cpu_relax();
|
||||||
|
@ -734,9 +734,9 @@ retry:
|
||||||
spin_lock_irqsave(&rtc->irq_task_lock, flags);
|
spin_lock_irqsave(&rtc->irq_task_lock, flags);
|
||||||
if (rtc->irq_task != NULL && task == NULL)
|
if (rtc->irq_task != NULL && task == NULL)
|
||||||
err = -EBUSY;
|
err = -EBUSY;
|
||||||
if (rtc->irq_task != task)
|
else if (rtc->irq_task != task)
|
||||||
err = -EACCES;
|
err = -EACCES;
|
||||||
if (!err) {
|
else {
|
||||||
rtc->irq_freq = freq;
|
rtc->irq_freq = freq;
|
||||||
if (rtc->pie_enabled && rtc_update_hrtimer(rtc, 1) < 0) {
|
if (rtc->pie_enabled && rtc_update_hrtimer(rtc, 1) < 0) {
|
||||||
spin_unlock_irqrestore(&rtc->irq_task_lock, flags);
|
spin_unlock_irqrestore(&rtc->irq_task_lock, flags);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue