Commit 7305f5b3 authored by Christian König's avatar Christian König
Browse files

drm/radeon: use ttm_resource_manager_debug

parent f9eceeca
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -802,7 +802,7 @@ static int radeon_mm_vram_dump_table_show(struct seq_file *m, void *unused)
							    TTM_PL_VRAM);
	struct drm_printer p = drm_seq_file_printer(m);

	man->func->debug(man, &p);
	ttm_resource_manager_debug(man, &p);
	return 0;
}

@@ -820,7 +820,7 @@ static int radeon_mm_gtt_dump_table_show(struct seq_file *m, void *unused)
							    TTM_PL_TT);
	struct drm_printer p = drm_seq_file_printer(m);

	man->func->debug(man, &p);
	ttm_resource_manager_debug(man, &p);
	return 0;
}