diff options
| author | Scott Long <scottl@FreeBSD.org> | 2001-07-19 20:51:29 +0000 |
|---|---|---|
| committer | Scott Long <scottl@FreeBSD.org> | 2001-07-19 20:51:29 +0000 |
| commit | e93d24c2f0aade58e5531e08a29723e980255ddf (patch) | |
| tree | 47573cf6a7a30f8b393ac50d18b9fcfdd6e845c5 | |
| parent | 37b8c2dbf3c010436e7fa5c5e38cf3d5b721f13a (diff) | |
Notes
| -rw-r--r-- | sys/dev/sound/pci/maestro3.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/sound/pci/maestro3.c b/sys/dev/sound/pci/maestro3.c index 589339e1c68f..0c4d64c238da 100644 --- a/sys/dev/sound/pci/maestro3.c +++ b/sys/dev/sound/pci/maestro3.c @@ -89,6 +89,7 @@ static struct m3_card_type { #define M3_BUFSIZE 4096 #define M3_PCHANS 4 /* create /dev/dsp0.[0-N] to use more than one */ #define M3_RCHANS 1 +#define M3_MAXADDR ((1 << 27) - 1) struct sc_info; @@ -1140,7 +1141,7 @@ m3_pci_attach(device_t dev) } if (bus_dma_tag_create(/*parent*/NULL, /*alignment*/2, /*boundary*/0, - /*lowaddr*/0x08000000, + /*lowaddr*/M3_MAXADDR, /*highaddr*/BUS_SPACE_MAXADDR, /*filter*/NULL, /*filterarg*/NULL, /*maxsize*/M3_BUFSIZE, /*nsegments*/1, |
