7cf04396c5
SVN-Revision: 21894
21 lines
436 B
Diff
21 lines
436 B
Diff
--- a/arch/arm/mach-ixp4xx/common.c
|
|
+++ b/arch/arm/mach-ixp4xx/common.c
|
|
@@ -427,6 +427,17 @@ static void __init ixp4xx_clocksource_in
|
|
}
|
|
|
|
/*
|
|
+ * sched_clock()
|
|
+ */
|
|
+unsigned long long sched_clock(void)
|
|
+{
|
|
+ cycle_t cyc = ixp4xx_get_cycles(NULL);
|
|
+ struct clocksource *cs = &clocksource_ixp4xx;
|
|
+
|
|
+ return clocksource_cyc2ns(cyc, cs->mult, cs->shift);
|
|
+}
|
|
+
|
|
+/*
|
|
* clockevents
|
|
*/
|
|
static int ixp4xx_set_next_event(unsigned long evt,
|