Lines Matching refs:global_ref
31 struct drm_global_reference *global_ref; in bochs_ttm_global_init() local
34 global_ref = &bochs->ttm.mem_global_ref; in bochs_ttm_global_init()
35 global_ref->global_type = DRM_GLOBAL_TTM_MEM; in bochs_ttm_global_init()
36 global_ref->size = sizeof(struct ttm_mem_global); in bochs_ttm_global_init()
37 global_ref->init = &bochs_ttm_mem_global_init; in bochs_ttm_global_init()
38 global_ref->release = &bochs_ttm_mem_global_release; in bochs_ttm_global_init()
39 r = drm_global_item_ref(global_ref); in bochs_ttm_global_init()
48 global_ref = &bochs->ttm.bo_global_ref.ref; in bochs_ttm_global_init()
49 global_ref->global_type = DRM_GLOBAL_TTM_BO; in bochs_ttm_global_init()
50 global_ref->size = sizeof(struct ttm_bo_global); in bochs_ttm_global_init()
51 global_ref->init = &ttm_bo_global_init; in bochs_ttm_global_init()
52 global_ref->release = &ttm_bo_global_release; in bochs_ttm_global_init()
53 r = drm_global_item_ref(global_ref); in bochs_ttm_global_init()