From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753411AbbFUIbq (ORCPT ); Sun, 21 Jun 2015 04:31:46 -0400 Received: from mail-qk0-f181.google.com ([209.85.220.181]:33558 "EHLO mail-qk0-f181.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752431AbbFUIbh (ORCPT ); Sun, 21 Jun 2015 04:31:37 -0400 From: "Guillermo O. Freschi" To: linux-kernel@vger.kernel.org Cc: gregkh@linuxfoundation.org, arve@android.com, riandrews@android.com, mitchelh@codeaurora.org, tranmanphong@gmail.com, devel@driverdev.osuosl.org, "Guillermo O. Freschi" Subject: [PATCH] ion_chunk_heap.c: Fixed line over 80 characters Date: Sun, 21 Jun 2015 05:28:55 -0300 Message-Id: <1434875335-29956-1-git-send-email-kedrot@gmail.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: <5559A4D7.6040609@gmail.com> References: <5559A4D7.6040609@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Simple style fix. Signed-off-by: Guillermo O. Freschi --- drivers/staging/android/ion/ion_chunk_heap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/android/ion/ion_chunk_heap.c b/drivers/staging/android/ion/ion_chunk_heap.c index 5474615..0813163 100644 --- a/drivers/staging/android/ion/ion_chunk_heap.c +++ b/drivers/staging/android/ion/ion_chunk_heap.c @@ -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.type = ION_HEAP_TYPE_CHUNK; chunk_heap->heap.flags = ION_HEAP_FLAG_DEFER_FREE; - pr_debug("%s: base %lu size %zu align %ld\n", __func__, chunk_heap->base, - heap_data->size, heap_data->align); + pr_debug("%s: base %lu size %zu align %ld\n", __func__, + chunk_heap->base, heap_data->size, heap_data->align); return &chunk_heap->heap; -- 2.1.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in Please read the FAQ at http://www.tux.org/lkml/