linux-rtc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] rtc: rtc-spear: replace spin_lock_irqsave by spin_lock in hard IRQ
@ 2021-03-15  2:39 Tian Tao
  2021-04-16 22:54 ` Alexandre Belloni
  0 siblings, 1 reply; 2+ messages in thread
From: Tian Tao @ 2021-03-15  2:39 UTC (permalink / raw)
  To: a.zummo, alexandre.belloni; +Cc: linux-rtc

The code has been in a irq-disabled context since it is hard IRQ. There
is no necessity to do it again.

Signed-off-by: Tian Tao <tiantao6@hisilicon.com>
---
 drivers/rtc/rtc-spear.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/rtc/rtc-spear.c b/drivers/rtc/rtc-spear.c
index 833daeb..ee721e5 100644
--- a/drivers/rtc/rtc-spear.c
+++ b/drivers/rtc/rtc-spear.c
@@ -153,12 +153,12 @@ static void rtc_wait_not_busy(struct spear_rtc_config *config)
 static irqreturn_t spear_rtc_irq(int irq, void *dev_id)
 {
 	struct spear_rtc_config *config = dev_id;
-	unsigned long flags, events = 0;
+	unsigned long events = 0;
 	unsigned int irq_data;
 
-	spin_lock_irqsave(&config->lock, flags);
+	spin_lock(&config->lock);
 	irq_data = readl(config->ioaddr + STATUS_REG);
-	spin_unlock_irqrestore(&config->lock, flags);
+	spin_unlock(&config->lock);
 
 	if ((irq_data & RTC_INT_MASK)) {
 		spear_rtc_clear_interrupt(config);
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] rtc: rtc-spear: replace spin_lock_irqsave by spin_lock in hard IRQ
  2021-03-15  2:39 [PATCH] rtc: rtc-spear: replace spin_lock_irqsave by spin_lock in hard IRQ Tian Tao
@ 2021-04-16 22:54 ` Alexandre Belloni
  0 siblings, 0 replies; 2+ messages in thread
From: Alexandre Belloni @ 2021-04-16 22:54 UTC (permalink / raw)
  To: a.zummo, Tian Tao; +Cc: Alexandre Belloni, linux-rtc

On Mon, 15 Mar 2021 10:39:30 +0800, Tian Tao wrote:
> The code has been in a irq-disabled context since it is hard IRQ. There
> is no necessity to do it again.

Applied, thanks!

[1/1] rtc: rtc-spear: replace spin_lock_irqsave by spin_lock in hard IRQ
      commit: 880f25d690150937e42a2e8b86c111aae8da6d08

Best regards,
-- 
Alexandre Belloni <alexandre.belloni@bootlin.com>

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-04-16 22:54 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-15  2:39 [PATCH] rtc: rtc-spear: replace spin_lock_irqsave by spin_lock in hard IRQ Tian Tao
2021-04-16 22:54 ` Alexandre Belloni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).