From: TsiChung Liew Date: Fri, 1 Aug 2008 00:53:21 +0000 (-0500) Subject: ColdFire: Fix compilation issue caused by a missing function X-Git-Tag: v1.3.4~22 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ac169d645f5f0e0b9a232563099209e92a355d8e;p=oweals%2Fu-boot.git ColdFire: Fix compilation issue caused by a missing function Implement usec2ticks() which is used by fsl_i2c.c in lib_m68k/time.c Signed-off-by: TsiChung Liew --- diff --git a/lib_m68k/time.c b/lib_m68k/time.c index 28d371d5e6..6eba784b5c 100644 --- a/lib_m68k/time.c +++ b/lib_m68k/time.c @@ -199,6 +199,11 @@ unsigned long long get_ticks(void) return get_timer(0); } +unsigned long usec2ticks(unsigned long usec) +{ + return get_timer(usec); +} + /* * This function is derived from PowerPC code (timebase clock frequency). * On M68K it returns the number of timer ticks per second.