[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20230403072443.83810-2-d-gole@ti.com>
Date: Mon, 3 Apr 2023 12:54:42 +0530
From: Dhruva Gole <d-gole@...com>
To: <linux-gpio@...r.kernel.org>
CC: Dhruva Gole <d-gole@...com>, <linux-kernel@...r.kernel.org>,
Devarsh Thakkar <devarsht@...com>,
Linus Walleij <linus.walleij@...aro.org>,
Keerthy <j-keerthy@...com>
Subject: [PATCH 1/2] gpio: davinci: Do not clear the bank intr enable bit in save_context
The interrupt enable bits might be set if we want to use the GPIO as
wakeup source. Clearing this will mean disabling of interrupts in the GPIO
banks that we may want to wakeup from.
Thus remove the line that was clearing this bit from the driver's save
context function.
Cc: Devarsh Thakkar <devarsht@...com>
Fixes: 0651a730924b ("gpio: davinci: Add support for system suspend/resume PM")
Signed-off-by: Dhruva Gole <d-gole@...com>
Reviewed-by: Linus Walleij <linus.walleij@...aro.org>
Acked-by: Keerthy <j-keerthy@...com>
---
drivers/gpio/gpio-davinci.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/drivers/gpio/gpio-davinci.c b/drivers/gpio/gpio-davinci.c
index 7fc83057990a..d7595b39e8c4 100644
--- a/drivers/gpio/gpio-davinci.c
+++ b/drivers/gpio/gpio-davinci.c
@@ -639,9 +639,6 @@ static void davinci_gpio_save_context(struct davinci_gpio_controller *chips,
context->set_falling = readl_relaxed(&g->set_falling);
}
- /* Clear Bank interrupt enable bit */
- writel_relaxed(0, base + BINTEN);
-
/* Clear all interrupt status registers */
writel_relaxed(GENMASK(31, 0), &g->intstat);
}
--
2.25.1
Powered by blists - more mailing lists