diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2006-05-29 08:09:17 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2006-05-29 08:09:17 +0000 |
commit | d21d97d9cb7e60e4a5b21b06a11d56a4682aee3a (patch) | |
tree | ace66fd7f82bd21dab31904006f0c718765f1d38 /sys | |
parent | 075aab8da20020a7fc7dec4428b63b5ba6d314e4 (diff) |
allow ints for older asp; found on 710 @session; tested on 710, 715/33 (miod), 735/125 (graham gower)
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/hppa/dev/mem.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/dev/mem.c b/sys/arch/hppa/dev/mem.c index 23dcbd22d93..8ec11720f09 100644 --- a/sys/arch/hppa/dev/mem.c +++ b/sys/arch/hppa/dev/mem.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mem.c,v 1.27 2005/11/28 20:13:08 martin Exp $ */ +/* $OpenBSD: mem.c,v 1.28 2006/05/29 08:09:16 mickey Exp $ */ /* * Copyright (c) 1998-2004 Michael Shalayeff @@ -276,7 +276,7 @@ viper_setintrwnd(mask) sc = mem_cd.cd_devs[0]; if (sc->sc_vp) - sc->sc_vp->vi_intrwd; + sc->sc_vp->vi_intrwd = mask; } void |