ANDROID: Add EXPORT_SYMBOL_GPL for dma_heap_get_name

Upstream has no modules that use it, but in common
we system/cma/etc are modular, so we need to export
the new dma_heap_get_name() symbol

Signed-off-by: John Stultz <john.stultz@linaro.org>
Bug: 167709539
Change-Id: I25d77467742ea9c309c909874e0f1e9adf8a64af
This commit is contained in:
John Stultz
2021-02-10 19:23:09 +00:00
parent 892978dfab
commit afb3cffa2f

View File

@@ -291,6 +291,7 @@ const char *dma_heap_get_name(struct dma_heap *heap)
{
return heap->name;
}
EXPORT_SYMBOL_GPL(dma_heap_get_name);
struct dma_heap *dma_heap_add(const struct dma_heap_export_info *exp_info)
{