diff options
author | Paolo Cretaro <melko@frugalware.org> | 2017-04-22 00:47:59 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-04-25 20:56:14 +0200 |
commit | aa3a13dfe9c562ce7076c2952bcca66894d464ae (patch) | |
tree | 1d0f27b40124728bcbdcc7d6ea3f84a4ef817209 /drivers/staging/android | |
parent | be223d577578c38c09f5dc9dd1fda8b5f0c91320 (diff) |
staging: android: ion: Replace spaces with tabs for indentation
Fix checkpatch ERRORs: code indent should use tabs where possible.
Signed-off-by: Paolo Cretaro <melko@frugalware.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/android')
-rw-r--r-- | drivers/staging/android/ion/ion_cma_heap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/android/ion/ion_cma_heap.c b/drivers/staging/android/ion/ion_cma_heap.c index dc2a9135c4d0..a0949bc0dcf4 100644 --- a/drivers/staging/android/ion/ion_cma_heap.c +++ b/drivers/staging/android/ion/ion_cma_heap.c @@ -108,7 +108,7 @@ static struct ion_heap *__ion_cma_heap_create(struct cma *cma) int __ion_add_cma_heaps(struct cma *cma, void *data) { - struct ion_heap *heap; + struct ion_heap *heap; heap = __ion_cma_heap_create(cma); if (IS_ERR(heap)) @@ -116,8 +116,8 @@ int __ion_add_cma_heaps(struct cma *cma, void *data) heap->name = cma_get_name(cma); - ion_device_add_heap(heap); - return 0; + ion_device_add_heap(heap); + return 0; } static int ion_add_cma_heaps(void) |