diff options
| author | Marius Strobl <marius@FreeBSD.org> | 2008-11-19 22:09:03 +0000 |
|---|---|---|
| committer | Marius Strobl <marius@FreeBSD.org> | 2008-11-19 22:09:03 +0000 |
| commit | eddfa7b1474598bf9c9327713a849c4773afd868 (patch) | |
| tree | e1e56b97926247afd1f8a10df81e58253fcabd65 /sys/dev/dcons | |
| parent | 656b038372878935c0b630b41625a2adb5345f1b (diff) | |
Notes
Diffstat (limited to 'sys/dev/dcons')
| -rw-r--r-- | sys/dev/dcons/dcons_crom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/dcons/dcons_crom.c b/sys/dev/dcons/dcons_crom.c index 290bb1e8ca40..0b2b707fcde6 100644 --- a/sys/dev/dcons/dcons_crom.c +++ b/sys/dev/dcons/dcons_crom.c @@ -229,7 +229,7 @@ dcons_crom_attach(device_t dev) /*lockarg*/&Giant, #endif &sc->dma_tag); - bus_dmamap_create(sc->dma_tag, 0, &sc->dma_map); + bus_dmamap_create(sc->dma_tag, BUS_DMA_COHERENT, &sc->dma_map); bus_dmamap_load(sc->dma_tag, sc->dma_map, (void *)dcons_conf->buf, dcons_conf->size, dmamap_cb, sc, 0); |
