File tree 1 file changed +9
-6
lines changed
1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -1444,12 +1444,15 @@ static void vmw_debugfs_resource_managers_init(struct vmw_private *vmw)
1444
1444
root , "system_ttm" );
1445
1445
ttm_resource_manager_create_debugfs (ttm_manager_type (& vmw -> bdev , TTM_PL_VRAM ),
1446
1446
root , "vram_ttm" );
1447
- ttm_resource_manager_create_debugfs (ttm_manager_type (& vmw -> bdev , VMW_PL_GMR ),
1448
- root , "gmr_ttm" );
1449
- ttm_resource_manager_create_debugfs (ttm_manager_type (& vmw -> bdev , VMW_PL_MOB ),
1450
- root , "mob_ttm" );
1451
- ttm_resource_manager_create_debugfs (ttm_manager_type (& vmw -> bdev , VMW_PL_SYSTEM ),
1452
- root , "system_mob_ttm" );
1447
+ if (vmw -> has_gmr )
1448
+ ttm_resource_manager_create_debugfs (ttm_manager_type (& vmw -> bdev , VMW_PL_GMR ),
1449
+ root , "gmr_ttm" );
1450
+ if (vmw -> has_mob ) {
1451
+ ttm_resource_manager_create_debugfs (ttm_manager_type (& vmw -> bdev , VMW_PL_MOB ),
1452
+ root , "mob_ttm" );
1453
+ ttm_resource_manager_create_debugfs (ttm_manager_type (& vmw -> bdev , VMW_PL_SYSTEM ),
1454
+ root , "system_mob_ttm" );
1455
+ }
1453
1456
}
1454
1457
1455
1458
static int vmwgfx_pm_notifier (struct notifier_block * nb , unsigned long val ,
You can’t perform that action at this time.
0 commit comments