All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] I2C: mv_i2c: fix build issue when enable debug option
@ 2011-09-30 15:43 Lei Wen
  2011-10-03  9:56 ` Heiko Schocher
  0 siblings, 1 reply; 2+ messages in thread
From: Lei Wen @ 2011-09-30 15:43 UTC (permalink / raw)
  To: u-boot

When DEBUG_I2C is open, the following build issue would shows up.

mv_i2c.c: In function 'i2c_transfer':
mv_i2c.c:257: error: 'ISR' undeclared (first use in this function)
mv_i2c.c:257: error: (Each undeclared identifier is reported only once
mv_i2c.c:257: error: for each function it appears in.)

Signed-off-by: Lei Wen <leiwen@marvell.com>
---
 drivers/i2c/mv_i2c.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/i2c/mv_i2c.c b/drivers/i2c/mv_i2c.c
index dcbe1ae..8eb30e7 100644
--- a/drivers/i2c/mv_i2c.c
+++ b/drivers/i2c/mv_i2c.c
@@ -253,7 +253,7 @@ transfer_error_bus_busy:
 		ret = -6; goto i2c_transfer_finish;
 
 i2c_transfer_finish:
-		PRINTD(("i2c_transfer: ISR: 0x%04x\n", ISR));
+		PRINTD(("i2c_transfer: ISR: 0x%04x\n", readl(&base->isr)));
 		i2c_reset();
 		return ret;
 }
-- 
1.7.0.4

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

* [U-Boot] [PATCH] I2C: mv_i2c: fix build issue when enable debug option
  2011-09-30 15:43 [U-Boot] [PATCH] I2C: mv_i2c: fix build issue when enable debug option Lei Wen
@ 2011-10-03  9:56 ` Heiko Schocher
  0 siblings, 0 replies; 2+ messages in thread
From: Heiko Schocher @ 2011-10-03  9:56 UTC (permalink / raw)
  To: u-boot

Hello Lei,

Lei Wen wrote:
> When DEBUG_I2C is open, the following build issue would shows up.
> 
> mv_i2c.c: In function 'i2c_transfer':
> mv_i2c.c:257: error: 'ISR' undeclared (first use in this function)
> mv_i2c.c:257: error: (Each undeclared identifier is reported only once
> mv_i2c.c:257: error: for each function it appears in.)
> 
> Signed-off-by: Lei Wen <leiwen@marvell.com>
> ---
>  drivers/i2c/mv_i2c.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)

Applied to u-boot-i2c.git

Thanks!

bye,
Heiko
-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany

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

end of thread, other threads:[~2011-10-03  9:56 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-09-30 15:43 [U-Boot] [PATCH] I2C: mv_i2c: fix build issue when enable debug option Lei Wen
2011-10-03  9:56 ` Heiko Schocher

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.