]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
fsl_i2c: Use timebase timer functions instead of get_timer()
authorKumar Gala <galak@kernel.crashing.org>
Tue, 29 Jul 2008 17:23:49 +0000 (12:23 -0500)
committerWolfgang Denk <wd@denx.de>
Tue, 29 Jul 2008 23:25:31 +0000 (01:25 +0200)
commit09d318a8bb1444ec92e31cafcdba877eb9409e58
treef7d859fa1667ec910953d96055522c4b8e1681f9
parent1ca9950b46c0aded14c80f728f6238625d723a19
fsl_i2c: Use timebase timer functions instead of get_timer()

The current implementation of get_timer() is only really useful after we
have relocated u-boot to memory.  The i2c code is used before that as part
of the SPD DDR setup.

We actually have a bug when using the get_timer() code before relocation
because the .bss hasn't been setup and thus we could be reading/writing
a random location (probably in flash).

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
drivers/i2c/fsl_i2c.c