diff options
| author | Peter Wemm <peter@FreeBSD.org> | 2002-10-09 08:54:32 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 2002-10-09 08:54:32 +0000 |
| commit | 16c1138c89ef7a738037fb976dd6b54797e5f88f (patch) | |
| tree | 1258a45d825402feb4dc26895b1b7c942627c4de /sys/dev/dpt | |
| parent | 167e93a52739720023700532862cf29353c3a398 (diff) | |
Notes
Diffstat (limited to 'sys/dev/dpt')
| -rw-r--r-- | sys/dev/dpt/dpt_eisa.c | 2 | ||||
| -rw-r--r-- | sys/dev/dpt/dpt_isa.c | 2 | ||||
| -rw-r--r-- | sys/dev/dpt/dpt_pci.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/dpt/dpt_eisa.c b/sys/dev/dpt/dpt_eisa.c index bdb53e7296da..fb2a7fd98f8b 100644 --- a/sys/dev/dpt/dpt_eisa.c +++ b/sys/dev/dpt/dpt_eisa.c @@ -139,7 +139,7 @@ dpt_eisa_attach (device_t dev) /* filter */ NULL, /* filterarg */ NULL, /* maxsize */ BUS_SPACE_MAXSIZE_32BIT, - /* nsegments */ BUS_SPACE_UNRESTRICTED, + /* nsegments */ ~0, /* maxsegsz */ BUS_SPACE_MAXSIZE_32BIT, /* flags */0, &dpt->parent_dmat) != 0) { diff --git a/sys/dev/dpt/dpt_isa.c b/sys/dev/dpt/dpt_isa.c index dad354a25ad7..6032ca58563b 100644 --- a/sys/dev/dpt/dpt_isa.c +++ b/sys/dev/dpt/dpt_isa.c @@ -125,7 +125,7 @@ dpt_isa_attach (device_t dev) /* filter */ NULL, /* filterarg */ NULL, /* maxsize */ BUS_SPACE_MAXSIZE_32BIT, - /* nsegments */ BUS_SPACE_UNRESTRICTED, + /* nsegments */ ~0, /* maxsegsz */ BUS_SPACE_MAXSIZE_32BIT, /* flags */ 0, &dpt->parent_dmat) != 0) { diff --git a/sys/dev/dpt/dpt_pci.c b/sys/dev/dpt/dpt_pci.c index 1077437f5a9d..90b62fe45828 100644 --- a/sys/dev/dpt/dpt_pci.c +++ b/sys/dev/dpt/dpt_pci.c @@ -144,7 +144,7 @@ dpt_pci_attach (device_t dev) /* filter */ NULL, /* filterarg */ NULL, /* maxsize */ BUS_SPACE_MAXSIZE_32BIT, - /* nsegments */ BUS_SPACE_UNRESTRICTED, + /* nsegments */ ~0, /* maxsegsz */ BUS_SPACE_MAXSIZE_32BIT, /* flags */ 0, &dpt->parent_dmat) != 0) { |
