Commit cef85381 authored by Guillermo O. Freschi's avatar Guillermo O. Freschi Committed by Greg Kroah-Hartman

staging: android: ion_chunk_heap.c: Fixed line over 80 characters

Simple style fix.
Signed-off-by: default avatarGuillermo O. Freschi <kedrot@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5605b188
...@@ -173,8 +173,8 @@ struct ion_heap *ion_chunk_heap_create(struct ion_platform_heap *heap_data) ...@@ -173,8 +173,8 @@ struct ion_heap *ion_chunk_heap_create(struct ion_platform_heap *heap_data)
chunk_heap->heap.ops = &chunk_heap_ops; chunk_heap->heap.ops = &chunk_heap_ops;
chunk_heap->heap.type = ION_HEAP_TYPE_CHUNK; chunk_heap->heap.type = ION_HEAP_TYPE_CHUNK;
chunk_heap->heap.flags = ION_HEAP_FLAG_DEFER_FREE; chunk_heap->heap.flags = ION_HEAP_FLAG_DEFER_FREE;
pr_debug("%s: base %lu size %zu align %ld\n", __func__, chunk_heap->base, pr_debug("%s: base %lu size %zu align %ld\n", __func__,
heap_data->size, heap_data->align); chunk_heap->base, heap_data->size, heap_data->align);
return &chunk_heap->heap; return &chunk_heap->heap;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment