i2c: omap: Restore i2c context always
authorShubhrajyoti D <shubhrajyoti@ti.com>
Mon, 5 Nov 2012 12:23:42 +0000 (17:53 +0530)
committerWolfram Sang <w.sang@pengutronix.de>
Wed, 14 Nov 2012 16:44:42 +0000 (17:44 +0100)
Currently the restore is done based on the flag
OMAP_I2C_FLAG_RESET_REGS_POSTIDLE.

This helps the following
- The driver is always capable of restoring regardless
of the off mode support being there or not.

- While testing omap2430 it is found that in case of certain
error paths (timeout) a reset is done. However the restore
never happens as it is dependent on the POSTIDLE flag.
The other option would be to call a restore in the reset
case. As there are only a few registers to be restored
the penalty in the idle case should not be much.

Reviewed-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Shubhrajyoti D <shubhrajyoti@ti.com>
Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
drivers/i2c/busses/i2c-omap.c

index faaa052249048793f46cc5db3f301f1e325708cb..067a73922be3947df3aef838193f79a70709f39a 100644 (file)
@@ -1327,8 +1327,7 @@ static int omap_i2c_runtime_resume(struct device *dev)
        if (!_dev->regs)
                return 0;
 
-       if (_dev->flags & OMAP_I2C_FLAG_RESET_REGS_POSTIDLE)
-               __omap_i2c_init(_dev);
+       __omap_i2c_init(_dev);
 
        return 0;
 }