[APPLIED] [PATCH] OMAP3: I2C: Clean up Errata 1p153 handling

2010-05-10 Thread Tony Lindgren
This patch has been applied to the linux-omap
by youw fwiendly patch wobot.

Branch in linux-omap: i2c-omap-for-ben

Initial commit ID (Likely to change): f95ba23e386509330595c45052ab4cef453ca262

PatchWorks
http://patchwork.kernel.org/patch/95686/

Git (Likely to change, and takes a while to get mirrored)
http://git.kernel.org/?p=linux/kernel/git/tmlind/linux-omap-2.6.git;a=commit;h=f95ba23e386509330595c45052ab4cef453ca262


--
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


[PATCH] OMAP3: I2C: Clean up Errata 1p153 handling

2010-04-28 Thread Manjunatha GK
Clean up existing Errata 1p153 handling to use generic
errata handling mechanism through dev flag.

Signed-off-by: Manjunatha GK 
Cc: linux-...@vger.kernel.org
Cc: linux-omap@vger.kernel.org
Cc: ben-li...@fluff.org
Cc: Tony Lindgren 
Cc: Nishanth Menon 
Cc: Alexander Shishkin 
---
 PS : This patch has dependency on the patch:
 https://patchwork.kernel.org/patch/95616/

 drivers/i2c/busses/i2c-omap.c |6 +-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/drivers/i2c/busses/i2c-omap.c b/drivers/i2c/busses/i2c-omap.c
index 5f5207e..0caa8fe 100644
--- a/drivers/i2c/busses/i2c-omap.c
+++ b/drivers/i2c/busses/i2c-omap.c
@@ -168,6 +168,7 @@ enum {
 
 /* Errata definitions */
 #define I2C_OMAP_ERRATA_I207   (1 << 0)
+#define I2C_OMAP3_1P153(1 << 1)
 
 struct omap_i2c_dev {
struct device   *dev;
@@ -946,7 +947,7 @@ complete:
break;
}
 
-   if ((dev->rev <= OMAP_I2C_REV_ON_3430) &&
+   if ((dev->errata & I2C_OMAP3_1P153) &&
errata_omap3_1p153(dev, &stat, &err))
goto complete;
 
@@ -1049,6 +1050,9 @@ omap_i2c_probe(struct platform_device *pdev)
 
dev->rev = omap_i2c_read_reg(dev, OMAP_I2C_REV_REG) & 0xff;
 
+   if (dev->rev <= OMAP_I2C_REV_ON_3430)
+   dev->errata |= I2C_OMAP3_1P153;
+
if (!(cpu_class_is_omap1() || cpu_is_omap2420())) {
u16 s;
 
-- 
1.6.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