mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 09:02:00 +00:00
drm: move drm_mem_init to proper place in startup sequence
For TTM this needs to be called later. Signed-off-by: Dave Airlie <airlied@linux.ie>
This commit is contained in:
parent
2716a02f60
commit
3260f9fdfe
@ -255,8 +255,6 @@ int drm_init(struct drm_driver *driver)
|
||||
|
||||
DRM_DEBUG("\n");
|
||||
|
||||
drm_mem_init();
|
||||
|
||||
for (i = 0; driver->pci_driver.id_table[i].vendor != 0; i++) {
|
||||
pid = (struct pci_device_id *)&driver->pci_driver.id_table[i];
|
||||
|
||||
@ -383,6 +381,8 @@ static int __init drm_core_init(void)
|
||||
goto err_p3;
|
||||
}
|
||||
|
||||
drm_mem_init();
|
||||
|
||||
DRM_INFO("Initialized %s %d.%d.%d %s\n",
|
||||
CORE_NAME, CORE_MAJOR, CORE_MINOR, CORE_PATCHLEVEL, CORE_DATE);
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user