mirror of https://gitee.com/openkylin/linux.git
drm: omapdrm: Remove unused omap_gem_tiled_size function
The function is never used, remove it. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
This commit is contained in:
parent
a84a49d507
commit
0f9abbd028
|
@ -231,7 +231,6 @@ int omap_gem_rotated_paddr(struct drm_gem_object *obj, uint32_t orient,
|
|||
int x, int y, dma_addr_t *paddr);
|
||||
uint64_t omap_gem_mmap_offset(struct drm_gem_object *obj);
|
||||
size_t omap_gem_mmap_size(struct drm_gem_object *obj);
|
||||
int omap_gem_tiled_size(struct drm_gem_object *obj, uint16_t *w, uint16_t *h);
|
||||
int omap_gem_tiled_stride(struct drm_gem_object *obj, uint32_t orient);
|
||||
|
||||
struct dma_buf *omap_gem_prime_export(struct drm_device *dev,
|
||||
|
|
|
@ -383,18 +383,6 @@ size_t omap_gem_mmap_size(struct drm_gem_object *obj)
|
|||
return size;
|
||||
}
|
||||
|
||||
/* get tiled size, returns -EINVAL if not tiled buffer */
|
||||
int omap_gem_tiled_size(struct drm_gem_object *obj, uint16_t *w, uint16_t *h)
|
||||
{
|
||||
struct omap_gem_object *omap_obj = to_omap_bo(obj);
|
||||
if (omap_obj->flags & OMAP_BO_TILED) {
|
||||
*w = omap_obj->width;
|
||||
*h = omap_obj->height;
|
||||
return 0;
|
||||
}
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------------------------------
|
||||
* Fault Handling
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue