diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2004-12-24 22:50:32 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2004-12-24 22:50:32 +0000 |
commit | f78d70bb67e8ac490d726ee2cc1410d1ba6b82c7 (patch) | |
tree | 492843aadc1365398518cba504bf2ae348e63442 /sys/arch/mvme88k/dev | |
parent | b1434114f469a0b54d0d6a82ab3ffe1bdb6c8652 (diff) |
{e,}intr{cnt,names} bye-bye.
Diffstat (limited to 'sys/arch/mvme88k/dev')
-rw-r--r-- | sys/arch/mvme88k/dev/clock.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sys/arch/mvme88k/dev/clock.c b/sys/arch/mvme88k/dev/clock.c index 50436c966a2..f01bb4d766a 100644 --- a/sys/arch/mvme88k/dev/clock.c +++ b/sys/arch/mvme88k/dev/clock.c @@ -1,4 +1,4 @@ -/* $OpenBSD: clock.c,v 1.43 2004/11/08 16:39:31 miod Exp $ */ +/* $OpenBSD: clock.c,v 1.44 2004/12/24 22:50:30 miod Exp $ */ /* * Copyright (c) 1999 Steve Murphree, Jr. * Copyright (c) 1995 Theo de Raadt @@ -282,8 +282,6 @@ sbc_clockintr(void *eframe) *(volatile u_int8_t *)(OBIO_START + PCC2_BASE + PCCTWO_T1ICR) = prof_reset; - intrcnt[M88K_CLK_IRQ]++; - hardclock(eframe); #if NBUGTTY > 0 bugtty_chkinput(); @@ -300,8 +298,6 @@ sbc_statintr(void *eframe) *(volatile u_int8_t *)(OBIO_START + PCC2_BASE + PCCTWO_T2ICR) = stat_reset; - intrcnt[M88K_SCLK_IRQ]++; - statclock((struct clockframe *)eframe); /* @@ -420,7 +416,6 @@ m188_clockintr(void *eframe) CIO_LOCK; write_cio(CIO_CSR1, CIO_GCB | CIO_CIP); /* Ack the interrupt */ - intrcnt[M88K_CLK_IRQ]++; hardclock(eframe); #if NBUGTTY > 0 bugtty_chkinput(); @@ -443,7 +438,6 @@ m188_statintr(void *eframe) tmp = *(volatile u_int32_t *)DART_STOPC; tmp = *(volatile u_int32_t *)DART_ISR; - intrcnt[M88K_SCLK_IRQ]++; statclock((struct clockframe *)eframe); /* |