diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2009-05-31 17:42:14 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2009-05-31 17:42:14 +0000 |
commit | e378318a967ade3cf3dc2b972b471f69b27ca9b6 (patch) | |
tree | c9213c4571c8191eed478b95e6b0d5dc7be833db /sys/dev/pci/isp_pci.c | |
parent | 8ab81686e9da47bf574ca4315fb6c8a32314db3b (diff) |
Remove BUS_DMAMEM_NOSYNC definition. Its name is not consistent with
other BUS_DMA_xxx flag names, and nothing uses it.
ok many@
Diffstat (limited to 'sys/dev/pci/isp_pci.c')
-rw-r--r-- | sys/dev/pci/isp_pci.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/dev/pci/isp_pci.c b/sys/dev/pci/isp_pci.c index 49bb6e70348..3f12d0a40cd 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.45 2009/05/08 18:39:01 miod Exp $ */ +/* $OpenBSD: isp_pci.c,v 1.46 2009/05/31 17:42:13 miod Exp $ */ /* * PCI specific probe and attach routines for QLogic ISP SCSI adapters. * @@ -314,10 +314,6 @@ static struct ispmdvec mdvec_2300 = { #endif #endif -#ifndef BUS_DMA_COHERENT -#define BUS_DMA_COHERENT BUS_DMAMEM_NOSYNC -#endif - static int isp_pci_probe (struct device *, void *, void *); static void isp_pci_attach (struct device *, struct device *, void *); |