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
This commit is contained in:
parent
48856b5fc7
commit
4ea024db92
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user