diff options
author | Paul Mundt <lethal@linux-sh.org> | 2006-01-17 01:14:18 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-17 02:15:28 -0500 |
commit | aa01666df35cd769c0957d4b3ae6ee99d680ab88 (patch) | |
tree | 7dd68a8522cc6f9e8eb49fb9af630fca8b3e464d /arch/sh/kernel/timers/Makefile | |
parent | 36ddf31b689a8c11d424e43565d2aa440b77bbf4 (diff) |
[PATCH] sh: Simple timer framework
This builds on some of the clock framework code to support a simple system
timer interface.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Cc: john stultz <johnstul@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/sh/kernel/timers/Makefile')
-rw-r--r-- | arch/sh/kernel/timers/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/sh/kernel/timers/Makefile b/arch/sh/kernel/timers/Makefile new file mode 100644 index 000000000000..151a6a304cec --- /dev/null +++ b/arch/sh/kernel/timers/Makefile | |||
@@ -0,0 +1,8 @@ | |||
1 | # | ||
2 | # Makefile for the various Linux/SuperH timers | ||
3 | # | ||
4 | |||
5 | obj-y := timer.o | ||
6 | |||
7 | obj-$(CONFIG_SH_TMU) += timer-tmu.o | ||
8 | |||