diff options
author | 1997-04-23 13:38:35 +0000 | |
---|---|---|
committer | 1997-04-23 13:38:35 +0000 | |
commit | 4e78bb3de2c0eeb1056eea637dae1c7682a8e442 (patch) | |
tree | a0411c7b0852a730eb50293bf67579c58314e8c9 | |
parent | NONBINMODE (diff) | |
download | wireguard-openbsd-4e78bb3de2c0eeb1056eea637dae1c7682a8e442.tar.xz wireguard-openbsd-4e78bb3de2c0eeb1056eea637dae1c7682a8e442.zip |
On video devices, if we're loading non-default resource values, save the
resource ID. Thanks to Paul Goyette <paul@pgoyette.bdt.com> for spotting
this one.
-rw-r--r-- | sys/arch/mac68k/dev/nubus.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/mac68k/dev/nubus.c b/sys/arch/mac68k/dev/nubus.c index 174ec6d0960..52b89222806 100644 --- a/sys/arch/mac68k/dev/nubus.c +++ b/sys/arch/mac68k/dev/nubus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nubus.c,v 1.10 1997/04/08 04:14:46 briggs Exp $ */ +/* $OpenBSD: nubus.c,v 1.11 1997/04/23 13:38:35 briggs Exp $ */ /* $NetBSD: nubus.c,v 1.32 1997/02/28 07:54:02 scottr Exp $ */ /* @@ -202,6 +202,8 @@ nubus_attach(parent, self, aux) (caddr_t) &slottype, sizeof(nubus_type)) <= 0) continue; + + rsrcid = r; } } |