Skip to content

Commit

Permalink
drm/i915: convert DRM_ERROR to DRM_DEBUG in phys object pwrite path
Browse files Browse the repository at this point in the history
This snuck in when I wrote phys object support.

Signed-off-by: Dave Airlie <[email protected]>
  • Loading branch information
airlied committed Feb 25, 2009
1 parent dd0910b commit e08fb4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/i915/i915_gem.c
Original file line number Diff line number Diff line change
Expand Up @@ -3548,7 +3548,7 @@ i915_gem_phys_pwrite(struct drm_device *dev, struct drm_gem_object *obj,
user_data = (char __user *) (uintptr_t) args->data_ptr;
obj_addr = obj_priv->phys_obj->handle->vaddr + args->offset;

DRM_ERROR("obj_addr %p, %lld\n", obj_addr, args->size);
DRM_DEBUG("obj_addr %p, %lld\n", obj_addr, args->size);
ret = copy_from_user(obj_addr, user_data, args->size);
if (ret)
return -EFAULT;
Expand Down

0 comments on commit e08fb4f

Please sign in to comment.