Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1628971 > unrolled thread

[PATCH] staging: android: ion: fix coding style issue

Started byAdheer Chandravanshi <adheerchandravanshi@gmail.com>
First post2017-04-23 12:10 +0200
Last post2017-04-23 12:10 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] staging: android: ion: fix coding style issue Adheer Chandravanshi <adheerchandravanshi@gmail.com> - 2017-04-23 12:10 +0200

#1628971 — [PATCH] staging: android: ion: fix coding style issue

FromAdheer Chandravanshi <adheerchandravanshi@gmail.com>
Date2017-04-23 12:10 +0200
Subject[PATCH] staging: android: ion: fix coding style issue
Message-ID<tzmCR-794-5@gated-at.bofh.it>
Use tab instead of spaces for indentation, as reported by checkpatch.pl

Signed-off-by: Adheer Chandravanshi <adheerchandravanshi@gmail.com>
---
 drivers/staging/android/ion/ion_cma_heap.c | 6 +++---
 1 file 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 dc2a913..a0949bc 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)
-- 
1.9.1

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web