diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2003-12-22 11:54:49 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2003-12-22 11:54:49 +0000 |
commit | c6a1b850531133e6900c8f4dbdffe8fa1e232aea (patch) | |
tree | 8ab5079c21ce2ca4b4c7e9fc26e129b8b7da247c /sys/arch/mvme88k/dev/clock.c | |
parent | 46f9808a6613fd9a139db6fffc33fa4243a6cd95 (diff) |
Correctly handle vme attachments which specify a larger ca_len size than
initially expected.
Diffstat (limited to 'sys/arch/mvme88k/dev/clock.c')
-rw-r--r-- | sys/arch/mvme88k/dev/clock.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/arch/mvme88k/dev/clock.c b/sys/arch/mvme88k/dev/clock.c index 58415f8bbe9..0b26e51bd2d 100644 --- a/sys/arch/mvme88k/dev/clock.c +++ b/sys/arch/mvme88k/dev/clock.c @@ -1,4 +1,4 @@ -/* $OpenBSD: clock.c,v 1.27 2003/12/12 21:51:29 miod Exp $ */ +/* $OpenBSD: clock.c,v 1.28 2003/12/22 11:54:48 miod Exp $ */ /* * Copyright (c) 1999 Steve Murphree, Jr. * Copyright (c) 1995 Theo de Raadt @@ -173,8 +173,6 @@ clockmatch(struct device *parent, void *vcf, void *args) * a message if it is different from what ioconf.c says. */ ca->ca_ipl = IPL_CLOCK; - /* set size to 0 - see pcctwo.c:match for details */ - ca->ca_len = 0; return (1); } |