OSDN Git Service

staging: android: ion: Remove redundant return of void function
authorPhong Tran <tranmanphong@gmail.com>
Wed, 13 Aug 2014 13:37:06 +0000 (20:37 +0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 16 Aug 2014 19:23:23 +0000 (12:23 -0700)
This patch fix checkpatch.pl warning
Tested by compilation only.

Signed-off-by: Phong Tran <tranmanphong@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/android/ion/ion.c
drivers/staging/android/ion/ion_carveout_heap.c
drivers/staging/android/ion/ion_chunk_heap.c
drivers/staging/android/ion/ion_dummy_driver.c
drivers/staging/android/ion/ion_system_heap.c

index cad76ae..56604f4 100644 (file)
@@ -1057,7 +1057,6 @@ static void *ion_dma_buf_kmap(struct dma_buf *dmabuf, unsigned long offset)
 static void ion_dma_buf_kunmap(struct dma_buf *dmabuf, unsigned long offset,
                               void *ptr)
 {
-       return;
 }
 
 static int ion_dma_buf_begin_cpu_access(struct dma_buf *dmabuf, size_t start,
index dcb6f21..9156d82 100644 (file)
@@ -133,7 +133,6 @@ static struct sg_table *ion_carveout_heap_map_dma(struct ion_heap *heap,
 static void ion_carveout_heap_unmap_dma(struct ion_heap *heap,
                                        struct ion_buffer *buffer)
 {
-       return;
 }
 
 static struct ion_heap_ops carveout_heap_ops = {
index 9c3e49a..3e6ec2e 100644 (file)
@@ -126,7 +126,6 @@ static struct sg_table *ion_chunk_heap_map_dma(struct ion_heap *heap,
 static void ion_chunk_heap_unmap_dma(struct ion_heap *heap,
                                     struct ion_buffer *buffer)
 {
-       return;
 }
 
 static struct ion_heap_ops chunk_heap_ops = {
index 6d0a38a..f3ea1c3 100644 (file)
@@ -152,7 +152,5 @@ static void __exit ion_dummy_exit(void)
                                dummy_heaps[ION_HEAP_TYPE_CHUNK].size);
                chunk_ptr = NULL;
        }
-
-       return;
 }
 __exitcall(ion_dummy_exit);
index 6b77c51..da2a63c 100644 (file)
@@ -205,7 +205,6 @@ static struct sg_table *ion_system_heap_map_dma(struct ion_heap *heap,
 static void ion_system_heap_unmap_dma(struct ion_heap *heap,
                                      struct ion_buffer *buffer)
 {
-       return;
 }
 
 static int ion_system_heap_shrink(struct ion_heap *heap, gfp_t gfp_mask,