Lines Matching refs:global_ref
59 struct drm_global_reference *global_ref; in vmw_ttm_global_init() local
62 global_ref = &dev_priv->mem_global_ref; in vmw_ttm_global_init()
63 global_ref->global_type = DRM_GLOBAL_TTM_MEM; in vmw_ttm_global_init()
64 global_ref->size = sizeof(struct ttm_mem_global); in vmw_ttm_global_init()
65 global_ref->init = &vmw_ttm_mem_global_init; in vmw_ttm_global_init()
66 global_ref->release = &vmw_ttm_mem_global_release; in vmw_ttm_global_init()
68 ret = drm_global_item_ref(global_ref); in vmw_ttm_global_init()
76 global_ref = &dev_priv->bo_global_ref.ref; in vmw_ttm_global_init()
77 global_ref->global_type = DRM_GLOBAL_TTM_BO; in vmw_ttm_global_init()
78 global_ref->size = sizeof(struct ttm_bo_global); in vmw_ttm_global_init()
79 global_ref->init = &ttm_bo_global_init; in vmw_ttm_global_init()
80 global_ref->release = &ttm_bo_global_release; in vmw_ttm_global_init()
81 ret = drm_global_item_ref(global_ref); in vmw_ttm_global_init()