mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-06 04:42:28 +02:00
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,
|