aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>2020-12-04 11:29:32 +0200
committerSam Ravnborg <sam@ravnborg.org>2020-12-05 20:01:12 +0100
commit1cdd3f739f4e839e77b83bb3238150c41905c748 (patch)
tree06ef47b0a5d62e4972a49ea97ee8986a34dbc7af
parentdrm/hisilicon: Delete the entire file hibmc_ttm.c (diff)
downloadlinux-dev-1cdd3f739f4e839e77b83bb3238150c41905c748.tar.xz
linux-dev-1cdd3f739f4e839e77b83bb3238150c41905c748.zip
drm: Remove drmm_add_final_kfree() declaration from public headers
The drmm_add_final_kfree() function is declared in the include/drm/drm_managed.h public header, but has become an internal API not exposed to drivers. Drop it from drm_managed.h as it's already declared in drm_internal.h. Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Acked-by: Thomas Zimmermann <tzimmermann@suse.de> Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Link: https://patchwork.freedesktop.org/patch/msgid/20201204092932.21636-1-laurent.pinchart+renesas@ideasonboard.com
-rw-r--r--include/drm/drm_managed.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/drm/drm_managed.h b/include/drm/drm_managed.h
index ca4114633bf9..b45c6fbf53ac 100644
--- a/include/drm/drm_managed.h
+++ b/include/drm/drm_managed.h
@@ -44,8 +44,6 @@ int __must_check __drmm_add_action_or_reset(struct drm_device *dev,
drmres_release_t action,
void *data, const char *name);
-void drmm_add_final_kfree(struct drm_device *dev, void *container);
-
void *drmm_kmalloc(struct drm_device *dev, size_t size, gfp_t gfp) __malloc;
/**