Source-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: src/sys/dev/drm
Module Name: src
Committed By: jmcneill
Date: Wed Mar 28 11:29:37 UTC 2007
Modified Files:
src/sys/dev/drm: drmP.h drm_agpsupport.c drm_bufs.c drm_drv.c drm_irq.c
drm_memory.c drm_vm.c files.drm
Log Message:
Introduce options DRM_NO_AGP and DRM_NO_MTRR, so I can run this on
platforms that don't provide these services.
In drm_mmap, don't wrap the return value with atop() if we're on macppc.
While we're here, fix:
pci_intr_establish(&dev->pa.pa_pc, ...);
to:
pci_intr_establish(dev->pa.pa_pc, ...);
The former doesn't even compile on macppc, and I'm amazed that it works at
all anywhere else.
To generate a diff of this commit:
cvs rdiff -r1.5 -r1.6 src/sys/dev/drm/drmP.h
cvs rdiff -r1.1 -r1.2 src/sys/dev/drm/drm_agpsupport.c \
src/sys/dev/drm/files.drm
cvs rdiff -r1.2 -r1.3 src/sys/dev/drm/drm_bufs.c src/sys/dev/drm/drm_irq.c \
src/sys/dev/drm/drm_memory.c
cvs rdiff -r1.4 -r1.5 src/sys/dev/drm/drm_drv.c
cvs rdiff -r1.3 -r1.4 src/sys/dev/drm/drm_vm.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Home |
Main Index |
Thread Index |
Old Index