diff options
Diffstat (limited to 'arch/x86/lib')
-rw-r--r-- | arch/x86/lib/board.c | 2 | ||||
-rw-r--r-- | arch/x86/lib/timer.c | 5 |
2 files changed, 0 insertions, 7 deletions
diff --git a/arch/x86/lib/board.c b/arch/x86/lib/board.c index df54222211..c92291bc1f 100644 --- a/arch/x86/lib/board.c +++ b/arch/x86/lib/board.c @@ -363,8 +363,6 @@ void board_init_r(gd_t *id, ulong dest_addr) udelay(20); - set_timer (0); - /* Initialize from environment */ if ((s = getenv ("loadaddr")) != NULL) { load_addr = simple_strtoul (s, NULL, 16); diff --git a/arch/x86/lib/timer.c b/arch/x86/lib/timer.c index 8fc68cdcb8..199ca8e5e7 100644 --- a/arch/x86/lib/timer.c +++ b/arch/x86/lib/timer.c @@ -103,8 +103,3 @@ ulong get_timer (ulong base) { return (system_ticks - base); } - -void set_timer (ulong t) -{ - system_ticks = t; -} |