|
@@ -517,8 +517,7 @@ i915_pages_create_for_stolen(struct drm_device *dev,
|
|
|
struct sg_table *st;
|
|
|
struct scatterlist *sg;
|
|
|
|
|
|
- DRM_DEBUG_DRIVER("offset=0x%x, size=%d\n", offset, size);
|
|
|
- BUG_ON(offset > ggtt->stolen_size - size);
|
|
|
+ GEM_BUG_ON(offset > ggtt->stolen_size - size);
|
|
|
|
|
|
/* We hide that we have no struct page backing our stolen object
|
|
|
* by wrapping the contiguous physical allocation with a fake
|
|
@@ -618,7 +617,6 @@ i915_gem_object_create_stolen(struct drm_device *dev, u32 size)
|
|
|
if (!drm_mm_initialized(&dev_priv->mm.stolen))
|
|
|
return NULL;
|
|
|
|
|
|
- DRM_DEBUG_KMS("creating stolen object: size=%x\n", size);
|
|
|
if (size == 0)
|
|
|
return NULL;
|
|
|
|