diff options
author | Dave Airlie <airlied@redhat.com> | 2009-06-16 17:41:23 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2009-06-16 17:44:04 -0400 |
commit | cc8da5263fa743c33d6503f85113bcb70048e633 (patch) | |
tree | 2b399a18b04fae075b0c5edc762f3ba3dad8b62a | |
parent | 6fe7ac3f5b544703581f3829c8c950dc721d976e (diff) |
drm/radeon: switch to using late_initcall
This fixes an issue where we get inited before fbcon when built-in.
Ideally this should work as a non late_initcall, but this fixes it for now.
We also don't suggest people build this in (at least distro maintainers).
Reported-by: Ryan Hope <rmh3093@gmail.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
-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 f70c351bb43e..c815a2cbf7b3 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) | |||
345 | drm_exit(driver); | 345 | drm_exit(driver); |
346 | } | 346 | } |
347 | 347 | ||
348 | module_init(radeon_init); | 348 | late_initcall(radeon_init); |
349 | module_exit(radeon_exit); | 349 | module_exit(radeon_exit); |
350 | 350 | ||
351 | MODULE_AUTHOR(DRIVER_AUTHOR); | 351 | MODULE_AUTHOR(DRIVER_AUTHOR); |