aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/aic7xxx
diff options
context:
space:
mode:
authorJuli Mallett <jmallett@FreeBSD.org>2012-03-12 19:29:32 +0000
committerJuli Mallett <jmallett@FreeBSD.org>2012-03-12 19:29:32 +0000
commitf1bd1e9dd7bcf042b5176f94bf0e6ad9de2d66c8 (patch)
tree7a1a82a5e05479859147b3defdfeeac63b942732 /sys/dev/aic7xxx
parentfee74cf7e876c6acf990731daad2328cc7b414b7 (diff)
downloadsrc-f1bd1e9dd7bcf042b5176f94bf0e6ad9de2d66c8.tar.gz
src-f1bd1e9dd7bcf042b5176f94bf0e6ad9de2d66c8.zip
Remove comments about creating DMA tags as children of the DMA tags of their
parent bus where the code has now been modified to do so. Reviewed by: scottl
Notes
Notes: svn path=/head/; revision=232882
Diffstat (limited to 'sys/dev/aic7xxx')
-rw-r--r--sys/dev/aic7xxx/ahc_eisa.c1
-rw-r--r--sys/dev/aic7xxx/ahc_isa.c1
-rw-r--r--sys/dev/aic7xxx/ahc_pci.c1
-rw-r--r--sys/dev/aic7xxx/ahd_pci.c1
4 files changed, 0 insertions, 4 deletions
diff --git a/sys/dev/aic7xxx/ahc_eisa.c b/sys/dev/aic7xxx/ahc_eisa.c
index 8c6e4df444d8..05d262bbc72e 100644
--- a/sys/dev/aic7xxx/ahc_eisa.c
+++ b/sys/dev/aic7xxx/ahc_eisa.c
@@ -130,7 +130,6 @@ aic7770_attach(device_t dev)
ahc_set_unit(ahc, device_get_unit(dev));
/* Allocate a dmatag for our SCB DMA maps */
- /* XXX Should be a child of the PCI bus dma tag */
error = aic_dma_tag_create(ahc, /*parent*/bus_get_dma_tag(dev),
/*alignment*/1, /*boundary*/0,
/*lowaddr*/BUS_SPACE_MAXADDR_32BIT,
diff --git a/sys/dev/aic7xxx/ahc_isa.c b/sys/dev/aic7xxx/ahc_isa.c
index 0bf0f537274e..c73e85c3d551 100644
--- a/sys/dev/aic7xxx/ahc_isa.c
+++ b/sys/dev/aic7xxx/ahc_isa.c
@@ -253,7 +253,6 @@ ahc_isa_attach(device_t dev)
ahc_set_unit(ahc, device_get_unit(dev));
/* Allocate a dmatag for our SCB DMA maps */
- /* XXX Should be a child of the VLB/ISA bus dma tag */
error = aic_dma_tag_create(ahc, /*parent*/bus_get_dma_tag(dev),
/*alignment*/1, /*boundary*/0,
/*lowaddr*/BUS_SPACE_MAXADDR_32BIT,
diff --git a/sys/dev/aic7xxx/ahc_pci.c b/sys/dev/aic7xxx/ahc_pci.c
index 9a27aaf9f766..2392298661bb 100644
--- a/sys/dev/aic7xxx/ahc_pci.c
+++ b/sys/dev/aic7xxx/ahc_pci.c
@@ -105,7 +105,6 @@ ahc_pci_attach(device_t dev)
ahc->flags |= AHC_39BIT_ADDRESSING;
/* Allocate a dmatag for our SCB DMA maps */
- /* XXX Should be a child of the PCI bus dma tag */
error = aic_dma_tag_create(ahc, /*parent*/bus_get_dma_tag(dev),
/*alignment*/1, /*boundary*/0,
(ahc->flags & AHC_39BIT_ADDRESSING)
diff --git a/sys/dev/aic7xxx/ahd_pci.c b/sys/dev/aic7xxx/ahd_pci.c
index 3a0116160083..0c06673ca514 100644
--- a/sys/dev/aic7xxx/ahd_pci.c
+++ b/sys/dev/aic7xxx/ahd_pci.c
@@ -107,7 +107,6 @@ ahd_pci_attach(device_t dev)
ahd->flags |= AHD_39BIT_ADDRESSING;
/* Allocate a dmatag for our SCB DMA maps */
- /* XXX Should be a child of the PCI bus dma tag */
error = aic_dma_tag_create(ahd, /*parent*/bus_get_dma_tag(dev),
/*alignment*/1, /*boundary*/0,
(ahd->flags & AHD_39BIT_ADDRESSING)