Skip to content

Commit 047a754

Browse files
hoshinolinatdz
authored andcommitted
drm/shmem-helper: Revert accidental non-GPL export
The referenced commit added a wrapper for drm_gem_shmem_get_pages_sgt(), but in the process it accidentally changed the export type from GPL to non-GPL. Switch it back to GPL. Reported-by: Dmitry Osipenko <dmitry.osipenko@collabora.com> Fixes: ddddeda ("drm/shmem-helper: Fix locking for drm_gem_shmem_get_pages_sgt()") Signed-off-by: Asahi Lina <lina@asahilina.net> Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Link: https://patchwork.freedesktop.org/patch/msgid/20230227-shmem-export-fix-v1-1-8880b2c25e81@asahilina.net
1 parent c176060 commit 047a754

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/gpu/drm/drm_gem_shmem_helper.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -744,7 +744,7 @@ struct sg_table *drm_gem_shmem_get_pages_sgt(struct drm_gem_shmem_object *shmem)
744744

745745
return sgt;
746746
}
747-
EXPORT_SYMBOL(drm_gem_shmem_get_pages_sgt);
747+
EXPORT_SYMBOL_GPL(drm_gem_shmem_get_pages_sgt);
748748

749749
/**
750750
* drm_gem_shmem_prime_import_sg_table - Produce a shmem GEM object from

0 commit comments

Comments
 (0)