diff options
author | 2002-12-11 06:02:23 +0000 | |
---|---|---|
committer | 2002-12-11 06:02:23 +0000 | |
commit | 6e238fe7bad96fcb9f77c752482906dd6d7fbe02 (patch) | |
tree | ec621acfe0aa53bf80f6228f078e426ae0eaaabe | |
parent | in mountroot: (diff) | |
download | wireguard-openbsd-6e238fe7bad96fcb9f77c752482906dd6d7fbe02.tar.xz wireguard-openbsd-6e238fe7bad96fcb9f77c752482906dd6d7fbe02.zip |
delay(1) is enough on attention
-rw-r--r-- | sys/arch/hppa/gsc/if_ie_gsc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/hppa/gsc/if_ie_gsc.c b/sys/arch/hppa/gsc/if_ie_gsc.c index a2b9012f190..199c167ed61 100644 --- a/sys/arch/hppa/gsc/if_ie_gsc.c +++ b/sys/arch/hppa/gsc/if_ie_gsc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ie_gsc.c,v 1.14 2002/10/13 14:15:35 mickey Exp $ */ +/* $OpenBSD: if_ie_gsc.c,v 1.15 2002/12/11 06:02:23 mickey Exp $ */ /* * Copyright (c) 1998,1999 Michael Shalayeff @@ -153,9 +153,9 @@ ie_gsc_attend(sc) register volatile struct ie_gsc_regs *r = (struct ie_gsc_regs *)sc->ioh; fdcache(0, (vaddr_t)ie_mem, IE_SIZE); - DELAY(10); + DELAY(1); r->ie_attn = 0; - DELAY(10); + DELAY(1); } void |