All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] i2c-pxa2xx: Fix register offsets
@ 2011-03-13 13:53 ` Vasily Khoruzhick
  0 siblings, 0 replies; 8+ messages in thread
From: Vasily Khoruzhick @ 2011-03-13 13:53 UTC (permalink / raw)
  To: Sebastian Andrzej Siewior, ben-linux-elnMNo+KYs3YtjvyW6yDsg,
	linux-i2c-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r
  Cc: Vasily Khoruzhick

Fix regression that was introduced by dynamic register layout.

Signed-off-by: Vasily Khoruzhick <anarsoul-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
---
 drivers/i2c/busses/i2c-pxa.c |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/drivers/i2c/busses/i2c-pxa.c b/drivers/i2c/busses/i2c-pxa.c
index a90739b..312d369 100644
--- a/drivers/i2c/busses/i2c-pxa.c
+++ b/drivers/i2c/busses/i2c-pxa.c
@@ -66,18 +66,18 @@ enum pxa_i2c_types {
 static struct pxa_reg_layout pxa_reg_layout[] = {
 	[REGS_PXA2XX] = {
 		.ibmr =	0x00,
-		.idbr =	0x10,
-		.icr =	0x20,
-		.isr =	0x30,
-		.isar =	0x40,
-	},
-	[REGS_PXA3XX] = {
-		.ibmr =	0x00,
 		.idbr =	0x08,
 		.icr =	0x10,
 		.isr =	0x18,
 		.isar =	0x20,
 	},
+	[REGS_PXA3XX] = {
+		.ibmr =	0x00,
+		.idbr =	0x04,
+		.icr =	0x08,
+		.isr =	0x0c,
+		.isar =	0x10,
+	},
 	[REGS_CE4100] = {
 		.ibmr =	0x14,
 		.idbr =	0x0c,
-- 
1.7.4.1

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

end of thread, other threads:[~2011-03-14 14:29 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-13 13:53 [PATCH 1/2] i2c-pxa2xx: Fix register offsets Vasily Khoruzhick
2011-03-13 13:53 ` Vasily Khoruzhick
     [not found] ` <1300024409-32587-1-git-send-email-anarsoul-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2011-03-13 13:53   ` [PATCH 2/2] i2c-pxa2xx: Don't clear isr bits too early Vasily Khoruzhick
2011-03-13 13:53     ` Vasily Khoruzhick
2011-03-14 14:15   ` [PATCH 1/2] i2c-pxa2xx: Fix register offsets Sebastian Andrzej Siewior
2011-03-14 14:15     ` Sebastian Andrzej Siewior
2011-03-14 14:29   ` Ben Dooks
2011-03-14 14:29     ` Ben Dooks

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.