From fea301bf54f1aec9a3ce0aee08388c0faf327c59 Mon Sep 17 00:00:00 2001 From: Sam Leffler Date: Tue, 16 Dec 1986 04:52:53 -0800 Subject: [PATCH] std addresses must be 32-bit SCCS-vsn: sys/tahoe/if/if_enp.c 1.4 --- usr/src/sys/tahoe/if/if_enp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/src/sys/tahoe/if/if_enp.c b/usr/src/sys/tahoe/if/if_enp.c index 89f381766c..5ca892b643 100644 --- a/usr/src/sys/tahoe/if/if_enp.c +++ b/usr/src/sys/tahoe/if/if_enp.c @@ -1,4 +1,4 @@ -/* if_enp.c 1.3 86/12/15 */ +/* if_enp.c 1.4 86/12/15 */ #include "enp.h" #if NENP > 0 @@ -49,7 +49,7 @@ #define ENPUNIT(dev) (minor(dev)) /* for enp ram devices */ int enpprobe(), enpattach(), enpintr(); -long enpstd[] = { 0xf41000, 0xf61000, 0 }; +long enpstd[] = { 0xfff41000, 0xfff61000, 0 }; struct vba_device *enpinfo[NENP]; struct vba_driver enpdriver = { enpprobe, 0, enpattach, 0, enpstd, "enp", enpinfo, "enp-20", 0 }; -- 2.20.1