diff options
| author | 2005-08-09 04:10:10 +0000 | |
|---|---|---|
| committer | 2005-08-09 04:10:10 +0000 | |
| commit | 798bf0b9f6d5a3fb920772d2e82520bf10a1fedb (patch) | |
| tree | ab8ef89a4d152df717d75a6e5bef80392473f2ee /sys/dev/pci/isp_pci.c | |
| parent | Back out a change from tzcode2005c that can cause an infinite loop in mktime(). (diff) | |
| download | wireguard-openbsd-798bf0b9f6d5a3fb920772d2e82520bf10a1fedb.tar.xz wireguard-openbsd-798bf0b9f6d5a3fb920772d2e82520bf10a1fedb.zip | |
do not set PCI_COMMAND_MASTER_ENABLE explicitly as it's already set in pcisubmatch(); kettenis@ testing; brad@ ok
Diffstat (limited to 'sys/dev/pci/isp_pci.c')
| -rw-r--r-- | sys/dev/pci/isp_pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/isp_pci.c b/sys/dev/pci/isp_pci.c index 81555942185..bc19df45794 100644 --- a/sys/dev/pci/isp_pci.c +++ b/sys/dev/pci/isp_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isp_pci.c,v 1.36 2005/04/08 02:07:49 brad Exp $ */ +/* $OpenBSD: isp_pci.c,v 1.37 2005/08/09 04:10:13 mickey Exp $ */ /* * PCI specific probe and attach routines for Qlogic ISP SCSI adapters. * @@ -647,7 +647,7 @@ isp_pci_attach(struct device *parent, struct device *self, void *aux) if (IS_23XX(isp)) { isp->isp_touched = 1; } - data |= PCI_COMMAND_MASTER_ENABLE | PCI_COMMAND_INVALIDATE_ENABLE; + data |= PCI_COMMAND_INVALIDATE_ENABLE; /* * Not so sure about these- but I think it's important that they get |
