diff options
author | Paolo Cretaro <melko@frugalware.org> | 2017-04-25 22:14:29 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-04-28 11:40:07 +0200 |
commit | 6c707d4febfb7bcc9628a38bc8e2d9b690486414 (patch) | |
tree | f7f565b7a0bd71f2b3ad2150863df7e53ae520c8 /drivers/staging/android | |
parent | f06ee95ce6b0b09c30e9344ca736d00d068c435c (diff) |
staging: android: ion: Remove whitespace before quoted newline
Fix checkpatch.pl warning about unnecessary whitespace before a
quoted newline.
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_chunk_heap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/android/ion/ion_chunk_heap.c b/drivers/staging/android/ion/ion_chunk_heap.c index 9c257c7a2ba0..102c09398317 100644 --- a/drivers/staging/android/ion/ion_chunk_heap.c +++ b/drivers/staging/android/ion/ion_chunk_heap.c @@ -150,7 +150,7 @@ struct ion_heap *ion_chunk_heap_create(struct ion_platform_heap *heap_data) chunk_heap->heap.ops = &chunk_heap_ops; chunk_heap->heap.type = ION_HEAP_TYPE_CHUNK; chunk_heap->heap.flags = ION_HEAP_FLAG_DEFER_FREE; - pr_debug("%s: base %pa size %zu \n", __func__, + pr_debug("%s: base %pa size %zu\n", __func__, &chunk_heap->base, heap_data->size); return &chunk_heap->heap; |