From 4ea024db92720d19e3d640ff68a0b97a5be39c02 Mon Sep 17 00:00:00 2001 From: Noriaki Mitsunaga Date: Tue, 4 Sep 2001 04:40:09 +0000 Subject: [PATCH] Change the access width of memory window from 8 bits to 16 bits. 16 bits access is required by nsp driver to work in SMIT mode. Since previously (1.65 and before in current, and 1.46.28 and before in stable branch) 16 bits access was default, I hope it will break nothing. Okayed-by: imp --- usr.sbin/pccard/pccardd/cardd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/pccard/pccardd/cardd.c b/usr.sbin/pccard/pccardd/cardd.c index a5b04fd09ef..7b27bab95fa 100644 --- a/usr.sbin/pccard/pccardd/cardd.c +++ b/usr.sbin/pccard/pccardd/cardd.c @@ -706,7 +706,7 @@ assign_io(struct slot *sp) sp->mem.cardaddr = 0x4000; sp->mem.flags = MDF_ACTIVE | MDF_16BITS; } else { - sp->mem.flags = MDF_ACTIVE; + sp->mem.flags = MDF_ACTIVE | MDF_16BITS; } if (sp->mem.flags & MDF_ACTIVE) -- 2.45.2