diff options
| author | Robert Noland <rnoland@FreeBSD.org> | 2009-03-30 18:01:42 +0000 |
|---|---|---|
| committer | Robert Noland <rnoland@FreeBSD.org> | 2009-03-30 18:01:42 +0000 |
| commit | 221478e4c602442e791b7dd0b3097f198a03e2bd (patch) | |
| tree | c9597882ad63311d0e0b7a23d87d9a8c6bf614b3 /sys/dev/drm | |
| parent | 497435aafdbdf51b573ff3f55111735c254bf40b (diff) | |
Notes
Diffstat (limited to 'sys/dev/drm')
| -rw-r--r-- | sys/dev/drm/drm_pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/drm/drm_pci.c b/sys/dev/drm/drm_pci.c index 6d46c5d1ea4b..afd66047f216 100644 --- a/sys/dev/drm/drm_pci.c +++ b/sys/dev/drm/drm_pci.c @@ -91,7 +91,7 @@ drm_pci_alloc(struct drm_device *dev, size_t size, } ret = bus_dmamem_alloc(dmah->tag, &dmah->vaddr, - BUS_DMA_WAITOK | BUS_DMA_ZERO, &dmah->map); + BUS_DMA_WAITOK | BUS_DMA_ZERO | BUS_DMA_NOCACHE, &dmah->map); if (ret != 0) { bus_dma_tag_destroy(dmah->tag); free(dmah, DRM_MEM_DMA); |
