diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2000-01-09 17:08:06 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2000-01-09 17:08:06 +0000 |
commit | 4a567a82ee4c9597cadff6b3c7580deb1e27431b (patch) | |
tree | 6f6f8a857b8379c5a55cc019263b7a1ec5f496f7 /sys | |
parent | 2779ce54b5436c694c5891356ddb04116924dbb2 (diff) |
Change an instance of #if NISA that should be #if NISADMA
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/i386/pci/pcib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arch/i386/pci/pcib.c b/sys/arch/i386/pci/pcib.c index 16be67102a0..ac3f00f9325 100644 --- a/sys/arch/i386/pci/pcib.c +++ b/sys/arch/i386/pci/pcib.c @@ -121,7 +121,7 @@ pcib_callback(self) iba.iba_busname = "isa"; iba.iba_iot = I386_BUS_SPACE_IO; iba.iba_memt = I386_BUS_SPACE_MEM; -#if NISA > 0 +#if NISADMA > 0 iba.iba_dmat = &isa_bus_dma_tag; #endif config_found(self, &iba, pcib_print); |