staging: ion: fixup invalid kfree() calls on heap destroy

I've noticed that the last commit to ion_system_heap.c ('staging: ion:
optimize struct ion_system_heap') has an omission, so an invalid kfree()
gets called on ion_system_heap_destroy(). As ION system heap is never
destroyed until system shutdown, it may not cause any harm, but should
be fixed. I should have caught this before the merge, my bad.

Signed-off-by: Heesub Shin <heesub.shin@samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Heesub Shin 2014-06-20 11:46:14 +09:00 коммит произвёл Greg Kroah-Hartman
Родитель 32c3f470ec
Коммит 895ae87657
1 изменённых файлов: 0 добавлений и 1 удалений

Просмотреть файл

@ -304,7 +304,6 @@ void ion_system_heap_destroy(struct ion_heap *heap)
for (i = 0; i < num_orders; i++) for (i = 0; i < num_orders; i++)
ion_page_pool_destroy(sys_heap->pools[i]); ion_page_pool_destroy(sys_heap->pools[i]);
kfree(sys_heap->pools);
kfree(sys_heap); kfree(sys_heap);
} }