aboutsummaryrefslogtreecommitdiff
path: root/linux-core/drm_drv.c
diff options
context:
space:
mode:
authorDave Airlie <airlied@linux.ie>2005-02-07 11:20:43 +0000
committerDave Airlie <airlied@linux.ie>2005-02-07 11:20:43 +0000
commit03ddea5b274a515528ea58db62f7b5f779430c5b (patch)
tree2c517b24c88ba20606176f4db5331c16970d60dc /linux-core/drm_drv.c
parent300e0866d68d40af9271a588bd93522e4e7a339c (diff)
change DRIVER_ to CORE_ makes things look nicer, also change it so the
driver name is marked on resource allocations
Diffstat (limited to 'linux-core/drm_drv.c')
-rw-r--r--linux-core/drm_drv.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/linux-core/drm_drv.c b/linux-core/drm_drv.c
index c720f94b..60020bb9 100644
--- a/linux-core/drm_drv.c
+++ b/linux-core/drm_drv.c
@@ -15,10 +15,6 @@
* #define DRIVER_DESC "Matrox G200/G400"
* #define DRIVER_DATE "20001127"
*
- * #define DRIVER_MAJOR 2
- * #define DRIVER_MINOR 0
- * #define DRIVER_PATCHLEVEL 2
- *
* #define DRIVER_IOCTL_COUNT DRM_ARRAY_SIZE( mga_ioctls )
*
* #define drm_x mga_##x
@@ -502,8 +498,8 @@ static int __init drm_core_init(void)
}
DRM_INFO("Initialized %s %d.%d.%d %s\n",
- DRIVER_NAME,
- DRIVER_MAJOR, DRIVER_MINOR, DRIVER_PATCHLEVEL, DRIVER_DATE);
+ CORE_NAME,
+ CORE_MAJOR, CORE_MINOR, CORE_PATCHLEVEL, CORE_DATE);
return 0;
err_p3:
drm_sysfs_destroy(drm_class);