From 800e3b1e2f0bd1b4156bf28a30ec20ef1de2e6a8 Mon Sep 17 00:00:00 2001 From: dfr Date: Sun, 17 Oct 1999 06:48:47 +0000 Subject: Correct a stupid type which prevented us from working with any device which needed port resources. --- sys/dev/pci/pci.c | 2 +- sys/pci/pci.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/pci/pci.c b/sys/dev/pci/pci.c index f5da2d8..ca3de94 100644 --- a/sys/dev/pci/pci.c +++ b/sys/dev/pci/pci.c @@ -1032,7 +1032,7 @@ pci_add_resources(device_t dev, pcicfgregs* cfg) #endif if (type == SYS_RES_IOPORT && !pci_porten(cfg)) continue; - if (type == SYS_RES_IOPORT && !pci_memen(cfg)) + if (type == SYS_RES_MEMORY && !pci_memen(cfg)) continue; resource_list_add(rl, type, reg, diff --git a/sys/pci/pci.c b/sys/pci/pci.c index f5da2d8..ca3de94 100644 --- a/sys/pci/pci.c +++ b/sys/pci/pci.c @@ -1032,7 +1032,7 @@ pci_add_resources(device_t dev, pcicfgregs* cfg) #endif if (type == SYS_RES_IOPORT && !pci_porten(cfg)) continue; - if (type == SYS_RES_IOPORT && !pci_memen(cfg)) + if (type == SYS_RES_MEMORY && !pci_memen(cfg)) continue; resource_list_add(rl, type, reg, -- cgit v1.1