From: Andrew F. Davis Date: Fri, 11 Jan 2019 18:05:13 +0000 (-0600) Subject: staging: android: ion: Remove leftover comment X-Git-Tag: v5.15~6884^2~177 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6e42d12ce0dac1834767c2128444935b3a4f3322;p=platform%2Fkernel%2Flinux-starfive.git staging: android: ion: Remove leftover comment Since we use CMA APIs directly there is no device nor private heaps data, drop this comment. Fixes: 204f672255c2 ("staging: android: ion: Use CMA APIs directly") Signed-off-by: Andrew F. Davis Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/android/ion/ion_cma_heap.c b/drivers/staging/android/ion/ion_cma_heap.c index 7b557dd..bf65e67 100644 --- a/drivers/staging/android/ion/ion_cma_heap.c +++ b/drivers/staging/android/ion/ion_cma_heap.c @@ -111,10 +111,6 @@ static struct ion_heap *__ion_cma_heap_create(struct cma *cma) return ERR_PTR(-ENOMEM); cma_heap->heap.ops = &ion_cma_ops; - /* - * get device from private heaps data, later it will be - * used to make the link with reserved CMA memory - */ cma_heap->cma = cma; cma_heap->heap.type = ION_HEAP_TYPE_DMA; return &cma_heap->heap;