drm/qxl: remove unused object_pin/unpin() helpers
These two helpers are unused. Remove them. They rely on gem_obj->driver_private, which is set to NULL during setup. As this field isn't used by the driver, anymore, we can remove this assignment as well. Signed-off-by: David Herrmann <dh.herrmann@gmail.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
committed by
Dave Airlie
parent
23a9a2e075
commit
f547b22aaf
@@ -101,32 +101,6 @@ int qxl_gem_object_create_with_handle(struct qxl_device *qdev,
|
||||
return 0;
|
||||
}
|
||||
|
||||
int qxl_gem_object_pin(struct drm_gem_object *obj, uint32_t pin_domain,
|
||||
uint64_t *gpu_addr)
|
||||
{
|
||||
struct qxl_bo *qobj = obj->driver_private;
|
||||
int r;
|
||||
|
||||
r = qxl_bo_reserve(qobj, false);
|
||||
if (unlikely(r != 0))
|
||||
return r;
|
||||
r = qxl_bo_pin(qobj, pin_domain, gpu_addr);
|
||||
qxl_bo_unreserve(qobj);
|
||||
return r;
|
||||
}
|
||||
|
||||
void qxl_gem_object_unpin(struct drm_gem_object *obj)
|
||||
{
|
||||
struct qxl_bo *qobj = obj->driver_private;
|
||||
int r;
|
||||
|
||||
r = qxl_bo_reserve(qobj, false);
|
||||
if (likely(r == 0)) {
|
||||
qxl_bo_unpin(qobj);
|
||||
qxl_bo_unreserve(qobj);
|
||||
}
|
||||
}
|
||||
|
||||
int qxl_gem_object_open(struct drm_gem_object *obj, struct drm_file *file_priv)
|
||||
{
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user