OSDN Git Service

intel: Remove the asserts about the ignored alignment parameter.
authorEric Anholt <eric@anholt.net>
Thu, 8 Oct 2009 22:39:27 +0000 (15:39 -0700)
committerEric Anholt <eric@anholt.net>
Thu, 8 Oct 2009 22:55:02 +0000 (15:55 -0700)
I slipped it in with the alloc_tiled changes, since we were explicitly
throwing the parameter away.  It caught some bogus released code, which
we've now fixed, so remove the asserts to keep old drivers working.

libdrm/intel/intel_bufmgr_gem.c

index 3e46f53..b8be96d 100644 (file)
@@ -545,7 +545,6 @@ drm_intel_gem_bo_alloc_for_render(drm_intel_bufmgr *bufmgr,
                                  unsigned long size,
                                  unsigned int alignment)
 {
-       assert(alignment <= 4096);
        return drm_intel_gem_bo_alloc_internal(bufmgr, name, size,
                                               BO_ALLOC_FOR_RENDER);
 }
@@ -556,7 +555,6 @@ drm_intel_gem_bo_alloc(drm_intel_bufmgr *bufmgr,
                       unsigned long size,
                       unsigned int alignment)
 {
-       assert(alignment <= 4096);
        return drm_intel_gem_bo_alloc_internal(bufmgr, name, size, 0);
 }