diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-11-27 21:47:15 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-11-27 21:47:15 +0000 |
commit | cfd792315d36da5bd25ea7553f1b8ff07c32569f (patch) | |
tree | 0b3e1b6d67062dc9c1a07c9bf37114d8561f4db6 /sys/arch/hppa/dev/cpu.c | |
parent | d89097e161bdceaa7d8366237301a50ee9b885b4 (diff) |
no wrapper arounf hardclock(), use CPU_CLOCKUPDATE, real microtime; miod ok
Diffstat (limited to 'sys/arch/hppa/dev/cpu.c')
-rw-r--r-- | sys/arch/hppa/dev/cpu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/dev/cpu.c b/sys/arch/hppa/dev/cpu.c index 661741c3be6..966e6e43ee7 100644 --- a/sys/arch/hppa/dev/cpu.c +++ b/sys/arch/hppa/dev/cpu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.c,v 1.18 2002/05/23 16:03:39 mickey Exp $ */ +/* $OpenBSD: cpu.c,v 1.19 2002/11/27 21:47:14 mickey Exp $ */ /* * Copyright (c) 1998-2002 Michael Shalayeff @@ -186,7 +186,7 @@ cpuattach(parent, self, aux) /* sanity against lusers amongst config editors */ if (ca->ca_irq == 31) sc->sc_ih = cpu_intr_establish(IPL_CLOCK, ca->ca_irq, - clock_intr, NULL /*trapframe*/, &sc->sc_dev); + (int (*)(void *))hardclock, NULL /*frame*/, &sc->sc_dev); else printf ("%s: bad irq %d\n", sc->sc_dev.dv_xname, ca->ca_irq); } |