diff options
author | Steve Murphree <smurph@cvs.openbsd.org> | 2001-12-20 06:07:29 +0000 |
---|---|---|
committer | Steve Murphree <smurph@cvs.openbsd.org> | 2001-12-20 06:07:29 +0000 |
commit | 114e8abc12f5fa4603001f0a6eb0a059ba421d04 (patch) | |
tree | 581e9ab7af4fead7f3e81edb8a2d3b48510e7cc4 /sys/arch/mvme88k/dev/sclock.c | |
parent | 99f6bbd894a8f39be6e3ac6ef157f316e9887ebe (diff) |
machine dependant pointer changes.
Diffstat (limited to 'sys/arch/mvme88k/dev/sclock.c')
-rw-r--r-- | sys/arch/mvme88k/dev/sclock.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/mvme88k/dev/sclock.c b/sys/arch/mvme88k/dev/sclock.c index 1da18472c19..b3015601d56 100644 --- a/sys/arch/mvme88k/dev/sclock.c +++ b/sys/arch/mvme88k/dev/sclock.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sclock.c,v 1.8 2001/12/16 23:49:46 miod Exp $ */ +/* $OpenBSD: sclock.c,v 1.9 2001/12/20 06:07:28 smurph Exp $ */ /* * Copyright (c) 1999 Steve Murphree, Jr. * @@ -191,7 +191,7 @@ sclockattach(parent, self, args) sc->sc_statih.ih_ipl = ca->ca_ipl; stat_reset = ca->ca_ipl | PCC2_IRQ_IEN | PCC2_IRQ_ICLR; pcctwointr_establish(PCC2V_TIMER2, &sc->sc_statih); - mdfp.statclock_init_func = &sbc_initstatclock; + md.statclock_init_func = sbc_initstatclock; printf(": VME1x7"); break; #endif /* NPCCTWO */ @@ -202,7 +202,7 @@ sclockattach(parent, self, args) sc->sc_statih.ih_wantframe = 1; sc->sc_statih.ih_ipl = ca->ca_ipl; sysconintr_establish(SYSCV_TIMER2, &sc->sc_statih); - mdfp.statclock_init_func = &m188_initstatclock; + md.statclock_init_func = m188_initstatclock; printf(": VME188"); break; #endif /* NSYSCON */ |