diff options
author | Jerome Glisse <jglisse@redhat.com> | 2009-06-22 18:16:13 +0200 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2009-06-24 16:11:06 +1000 |
commit | 176f613e60b63f2d77e6c69f036cfc754f3aaac6 (patch) | |
tree | bc4890bc9bdce7128f64e61fda9366b381a185e8 /drivers/gpu/drm/radeon/radeon_drv.c | |
parent | e14cbee401cd00779a5267128371506b22c77bc9 (diff) |
drm/radeon: fix driver initialization order so radeon kms can be builtin
TTM need to be initialized before radeon if KMS is enabled otherwise
the kernel will crash hard.
Signed-off-by: Jerome Glisse <jglisse@redhat.com>
Signed-off-by: Dave Airlie <airlied@linux.ie>
Diffstat (limited to 'drivers/gpu/drm/radeon/radeon_drv.c')
-rw-r--r-- | drivers/gpu/drm/radeon/radeon_drv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/radeon/radeon_drv.c b/drivers/gpu/drm/radeon/radeon_drv.c index 09c9fb9f621..84ba69f4878 100644 --- a/drivers/gpu/drm/radeon/radeon_drv.c +++ b/drivers/gpu/drm/radeon/radeon_drv.c @@ -345,7 +345,7 @@ static void __exit radeon_exit(void) drm_exit(driver); } -late_initcall(radeon_init); +module_init(radeon_init); module_exit(radeon_exit); MODULE_AUTHOR(DRIVER_AUTHOR); |