radeon bo: Fix merge fall out

This commit is contained in:
Alex Deucher 2009-07-15 15:59:04 -04:00
parent 582838a666
commit 1e8a6068ee

View file

@ -187,6 +187,13 @@ static inline int _radeon_bo_wait(struct radeon_bo *bo,
return bo->bom->funcs->bo_wait(bo);
}
static inline int radeon_bo_is_static(struct radeon_bo *bo)
{
if (bo->bom->funcs->bo_is_static)
return bo->bom->funcs->bo_is_static(bo);
return 0;
}
#ifdef RADEON_DEBUG_BO
#define radeon_bo_open(bom, h, s, a, d, f, u)\
_radeon_bo_open(bom, h, s, a, d, f, u, __FILE__, __FUNCTION__, __LINE__)