blob: a3b08b77807a1b9a6337c911502e20d9262c4135 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* Copyright 2000 AG Electronics Ltd. */
/* This code is distributed without warranty under the GPL v2 (see COPYING) */
#ifndef _TIMER_H
#define __TIMER_H
unsigned long get_hz(void);
unsigned long ticks_since_boot(void);
void sleep_ticks(unsigned long);
void udelay(int);
#endif
|