diff options
author | Jesper Nilsson <jesper.nilsson@axis.com> | 2008-10-21 11:45:58 -0400 |
---|---|---|
committer | Jesper Nilsson <jesper.nilsson@axis.com> | 2008-10-29 12:29:44 -0400 |
commit | 556dcee7b829e5c350c3ffdbdb87a8b15aa3c5d3 (patch) | |
tree | 26485b0d92eedcba6c0c96d4069469041aaf7106 /include/asm-cris/fasttimer.h | |
parent | 242bfafc8e42da4697c1e2dea108049d14dbac4b (diff) |
[CRIS] Move header files from include to arch/cris/include.
Change all users of header files to correct path.
Remove some unneeded headers for arch-v32.
Signed-off-by: Jesper Nilsson <jesper.nilsson@axis.com>
Diffstat (limited to 'include/asm-cris/fasttimer.h')
-rw-r--r-- | include/asm-cris/fasttimer.h | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/include/asm-cris/fasttimer.h b/include/asm-cris/fasttimer.h deleted file mode 100644 index 8f8a8d6c9653..000000000000 --- a/include/asm-cris/fasttimer.h +++ /dev/null | |||
@@ -1,47 +0,0 @@ | |||
1 | /* | ||
2 | * linux/include/asm-cris/fasttimer.h | ||
3 | * | ||
4 | * Fast timers for ETRAX100LX | ||
5 | * Copyright (C) 2000-2007 Axis Communications AB | ||
6 | */ | ||
7 | #include <linux/time.h> /* struct timeval */ | ||
8 | #include <linux/timex.h> | ||
9 | |||
10 | #ifdef CONFIG_ETRAX_FAST_TIMER | ||
11 | |||
12 | typedef void fast_timer_function_type(unsigned long); | ||
13 | |||
14 | struct fasttime_t { | ||
15 | unsigned long tv_jiff; /* jiffies */ | ||
16 | unsigned long tv_usec; /* microseconds */ | ||
17 | }; | ||
18 | |||
19 | struct fast_timer{ /* Close to timer_list */ | ||
20 | struct fast_timer *next; | ||
21 | struct fast_timer *prev; | ||
22 | struct fasttime_t tv_set; | ||
23 | struct fasttime_t tv_expires; | ||
24 | unsigned long delay_us; | ||
25 | fast_timer_function_type *function; | ||
26 | unsigned long data; | ||
27 | const char *name; | ||
28 | }; | ||
29 | |||
30 | extern struct fast_timer *fast_timer_list; | ||
31 | |||
32 | void start_one_shot_timer(struct fast_timer *t, | ||
33 | fast_timer_function_type *function, | ||
34 | unsigned long data, | ||
35 | unsigned long delay_us, | ||
36 | const char *name); | ||
37 | |||
38 | int del_fast_timer(struct fast_timer * t); | ||
39 | /* return 1 if deleted */ | ||
40 | |||
41 | |||
42 | void schedule_usleep(unsigned long us); | ||
43 | |||
44 | |||
45 | int fast_timer_init(void); | ||
46 | |||
47 | #endif | ||