diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-06-09 09:08:25 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2011-07-01 04:37:14 -0400 |
commit | e6220bdc9485c5ea972f9e0e6d062a05934bb74b (patch) | |
tree | 79d049aed6a68281a272d4abc468b23dfaec8a21 /drivers/clocksource/Kconfig | |
parent | 21f07f4f5718449c85c29827ff6fb0cf35a6c96e (diff) |
i8253: Create common clockevent implementation
arm, mips and x86 implement i8253 based clockevents. All the same code
copied. Create a common implementation in drivers/clocksource/i8253.c.
About time to rename drivers/clocksource/ to something else.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Russell King <linux@arm.linux.org.uk>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: John Stultz <john.stultz@linaro.org>
Link: http://lkml.kernel.org/r/20110609130621.921710458@linutronix.de
Diffstat (limited to 'drivers/clocksource/Kconfig')
-rw-r--r-- | drivers/clocksource/Kconfig | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/clocksource/Kconfig b/drivers/clocksource/Kconfig index 330343bcb67e..d8d3e02b912c 100644 --- a/drivers/clocksource/Kconfig +++ b/drivers/clocksource/Kconfig | |||
@@ -1,11 +1,14 @@ | |||
1 | config CLKSRC_I8253 | 1 | config CLKSRC_I8253 |
2 | bool | 2 | bool |
3 | 3 | ||
4 | config CLKEVT_I8253 | ||
5 | bool | ||
6 | |||
4 | config I8253_LOCK | 7 | config I8253_LOCK |
5 | bool | 8 | bool |
6 | 9 | ||
7 | config CLKBLD_I8253 | 10 | config CLKBLD_I8253 |
8 | def_bool y if CLKSRC_I8253 || I8253_LOCK | 11 | def_bool y if CLKSRC_I8253 || CLKEVT_I8253 || I8253_LOCK |
9 | 12 | ||
10 | config CLKSRC_MMIO | 13 | config CLKSRC_MMIO |
11 | bool | 14 | bool |