public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [RFC] i2c_reloc_fixup fails on m68k
@ 2013-09-23 13:50 Jens Scharsig
  2013-09-24  6:33 ` Heiko Schocher
  0 siblings, 1 reply; 6+ messages in thread
From: Jens Scharsig @ 2013-09-23 13:50 UTC (permalink / raw)
  To: u-boot

Hello,

I have a access violation problem with i2c_reloc_fixup on coldfire
m68k systems.

I found out, the i2c_reloc_fixup tries to relocate the adapter itself,
but at this time i2c_adap_p is already relocated.

Can anybody confirm this?

I think also m68k, backfin and nds32 systems are affected


regards

Jens

---
diff --git a/drivers/i2c/i2c_core.c b/drivers/i2c/i2c_core.c
index d1072e8..bb5d4db 100644
--- a/drivers/i2c/i2c_core.c
+++ b/drivers/i2c/i2c_core.c
@@ -53,10 +53,6 @@ void i2c_reloc_fixup(void)
                return;

        for (i = 0; i < max; i++) {
-               /* adapter itself */
-               addr = (unsigned long)i2c_adap_p;
-               addr += gd->reloc_off;
-               i2c_adap_p = (struct i2c_adapter *)addr;
                /* i2c_init() */
                addr = (unsigned long)i2c_adap_p->init;
                addr += gd->reloc_off;

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

end of thread, other threads:[~2013-10-14 17:40 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-23 13:50 [U-Boot] [RFC] i2c_reloc_fixup fails on m68k Jens Scharsig
2013-09-24  6:33 ` Heiko Schocher
2013-09-24  7:41   ` Jens Scharsig
2013-10-14  5:51     ` Heiko Schocher
2013-10-14  7:50       ` Jens Scharsig
2013-10-14 17:40   ` Mike Frysinger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox