diff options
author | Patrick Wildt <patrick@cvs.openbsd.org> | 2013-05-09 13:40:39 +0000 |
---|---|---|
committer | Patrick Wildt <patrick@cvs.openbsd.org> | 2013-05-09 13:40:39 +0000 |
commit | d8021fc33de77afc83110cbfe8cc5b1767527591 (patch) | |
tree | 068b9e5a5ee73c5f3dba2b74c7cf5483277fcb4d | |
parent | 55d2c503dd2c690a62f4aeb4fd954a588e161c7c (diff) |
Have the ARM MPCore Timer use the private timer, which will be very useful
for SMP on the newer ARMv7 boards.
From drahn at dalerahn.com.
ok bmercer@
-rw-r--r-- | sys/arch/beagle/dev/gptimer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/beagle/dev/gptimer.c b/sys/arch/beagle/dev/gptimer.c index 60a9a3d201e..714bfb00ba1 100644 --- a/sys/arch/beagle/dev/gptimer.c +++ b/sys/arch/beagle/dev/gptimer.c @@ -1,4 +1,4 @@ -/* $OpenBSD: gptimer.c,v 1.12 2011/11/10 19:37:01 uwe Exp $ */ +/* $OpenBSD: gptimer.c,v 1.13 2013/05/09 13:40:38 patrick Exp $ */ /* * Copyright (c) 2007,2009 Dale Rahn <drahn@openbsd.org> * @@ -175,7 +175,7 @@ gptimer_attach(struct device *parent, struct device *self, void *args) oa->oa_dev->mem[0].addr); arm_clock_register(gptimer_cpu_initclocks, gptimer_delay, - gptimer_setstatclockrate); + gptimer_setstatclockrate, NULL); } /* |