[PATCH v3 10/13] gpio/omap: fix missing dataout context save in _set_gpio_dataout_reg

2012-03-07 Thread Tarun Kanti DebBarma
There are two functions, _set_gpio_dataout_reg() and _set_gpio_dataout_mask()
which writes to dataout register and the dataout context must be saved.
It is missing in the first function, _set_gpio_dataout_reg(). Fix this.

Reported-by: Govindraj Raja govindraj.r...@ti.com
Signed-off-by: Tarun Kanti DebBarma tarun.ka...@ti.com
---
 drivers/gpio/gpio-omap.c |1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/gpio/gpio-omap.c b/drivers/gpio/gpio-omap.c
index 8b4a7ba..04c2677 100644
--- a/drivers/gpio/gpio-omap.c
+++ b/drivers/gpio/gpio-omap.c
@@ -115,6 +115,7 @@ static void _set_gpio_dataout_reg(struct gpio_bank *bank, 
int gpio, int enable)
reg += bank-regs-clr_dataout;
 
__raw_writel(l, reg);
+   bank-context.dataout = l;
 }
 
 /* set data out value using mask register */
-- 
1.7.0.4

--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH v3 10/13] gpio/omap: fix missing dataout context save in _set_gpio_dataout_reg

2012-03-07 Thread Santosh Shilimkar
On Wednesday 07 March 2012 12:16 PM, Tarun Kanti DebBarma wrote:
 There are two functions, _set_gpio_dataout_reg() and _set_gpio_dataout_mask()
 which writes to dataout register and the dataout context must be saved.
 It is missing in the first function, _set_gpio_dataout_reg(). Fix this.
 
 Reported-by: Govindraj Raja govindraj.r...@ti.com
 Signed-off-by: Tarun Kanti DebBarma tarun.ka...@ti.com
 ---
Good catch. Is the suspend/resume caught this issue?

This can go as a fix as well.

Reviewed-by: Santosh Shilimkar santosh.shilim...@ti.com

Regards
Santosh
--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH v3 10/13] gpio/omap: fix missing dataout context save in _set_gpio_dataout_reg

2012-03-07 Thread DebBarma, Tarun Kanti
On Wed, Mar 7, 2012 at 5:33 PM, Santosh Shilimkar
santosh.shilim...@ti.com wrote:
 On Wednesday 07 March 2012 12:16 PM, Tarun Kanti DebBarma wrote:
 There are two functions, _set_gpio_dataout_reg() and _set_gpio_dataout_mask()
 which writes to dataout register and the dataout context must be saved.
 It is missing in the first function, _set_gpio_dataout_reg(). Fix this.

 Reported-by: Govindraj Raja govindraj.r...@ti.com
 Signed-off-by: Tarun Kanti DebBarma tarun.ka...@ti.com
 ---
 Good catch. Is the suspend/resume caught this issue?
That's right.
--
Tarun

 This can go as a fix as well.

 Reviewed-by: Santosh Shilimkar santosh.shilim...@ti.com

 Regards
 Santosh
--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html