diff options
author | Thomas Hellstrom <thomas@tungstengraphics.com> | 2006-07-10 13:00:21 +0000 |
---|---|---|
committer | Thomas Hellstrom <thomas@tungstengraphics.com> | 2006-07-10 13:00:21 +0000 |
commit | a392349691ec2aa3f83d8a9fc4a485e4dbef4bbe (patch) | |
tree | a44b4d9facd06a4caec647e57dcbffdea4a836bf /shared-core | |
parent | c21a7b763ad31c3473ba2c9a1a01bb729bc13bb5 (diff) |
Change drm Map handles to be arbitrary 32-bit hash tokens in the range
0x10000000 to 0x90000000 in PAGE_SIZE increments.
Implement hashed map lookups.
This potentially breaks both 2D and 3D drivers. If so, the corresponding
2D and 3D driver should be fixed, and it's corresponding drm device driver
should have its major bumped as soon as possible.
Bump sis and via drm device driver majors.
The SiS and Unichrome 3D drivers are fixed in Mesa CVS HEAD and
mesa_6_4_branch.
Diffstat (limited to 'shared-core')
-rw-r--r-- | shared-core/sis_drv.h | 6 | ||||
-rw-r--r-- | shared-core/via_drm.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/shared-core/sis_drv.h b/shared-core/sis_drv.h index ab3e9ae4..a06a96af 100644 --- a/shared-core/sis_drv.h +++ b/shared-core/sis_drv.h @@ -35,9 +35,9 @@ #define DRIVER_NAME "sis" #define DRIVER_DESC "SIS 300/630/540" #define DRIVER_DATE "20060704" -#define DRIVER_MAJOR 1 -#define DRIVER_MINOR 2 -#define DRIVER_PATCHLEVEL 1 +#define DRIVER_MAJOR 2 +#define DRIVER_MINOR 0 +#define DRIVER_PATCHLEVEL 0 enum sis_family { SIS_OTHER = 0, diff --git a/shared-core/via_drm.h b/shared-core/via_drm.h index 049c63e1..96082f22 100644 --- a/shared-core/via_drm.h +++ b/shared-core/via_drm.h @@ -44,9 +44,9 @@ #define VIA_DRM_DRIVER_DATE "20060616" -#define VIA_DRM_DRIVER_MAJOR 2 -#define VIA_DRM_DRIVER_MINOR 10 -#define VIA_DRM_DRIVER_PATCHLEVEL 2 +#define VIA_DRM_DRIVER_MAJOR 3 +#define VIA_DRM_DRIVER_MINOR 0 +#define VIA_DRM_DRIVER_PATCHLEVEL 0 #define VIA_DRM_DRIVER_VERSION (((VIA_DRM_DRIVER_MAJOR) << 16) | (VIA_DRM_DRIVER_MINOR)) #define VIA_NR_SAREA_CLIPRECTS 8 |