diff options
author | wpaul <wpaul@FreeBSD.org> | 2001-07-09 17:58:42 +0000 |
---|---|---|
committer | wpaul <wpaul@FreeBSD.org> | 2001-07-09 17:58:42 +0000 |
commit | ed90ce83ec27cf20ba16990749199344669588b2 (patch) | |
tree | a22d58c02f4a3e211ed7eca88e120ce01d245b91 /sys/dev/ti | |
parent | 431a592722db6b9341bb9b1e6a409a39edee7797 (diff) | |
download | FreeBSD-src-ed90ce83ec27cf20ba16990749199344669588b2.zip FreeBSD-src-ed90ce83ec27cf20ba16990749199344669588b2.tar.gz |
Apply patch supplied by Jonathan Chen: use the correct arguments to
pci_enable_io(). We need to use SYS_RES_IOPORT/SYS_RES_MEMORY instead
of PCIM_CMD_PORTEN/PCIM_CMD_MEMEN.
Diffstat (limited to 'sys/dev/ti')
-rw-r--r-- | sys/dev/ti/if_ti.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ti/if_ti.c b/sys/dev/ti/if_ti.c index 3e95df4..bb55cba 100644 --- a/sys/dev/ti/if_ti.c +++ b/sys/dev/ti/if_ti.c @@ -1482,7 +1482,7 @@ static int ti_attach(dev) * Map control/status registers. */ pci_enable_busmaster(dev); - pci_enable_io(dev, PCIM_CMD_MEMEN); + pci_enable_io(dev, SYS_RES_MEMORY); command = pci_read_config(dev, PCIR_COMMAND, 4); if (!(command & PCIM_CMD_MEMEN)) { |