Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752077AbdLBRVQ (ORCPT ); Sat, 2 Dec 2017 12:21:16 -0500 Received: from mail-pf0-f195.google.com ([209.85.192.195]:34138 "EHLO mail-pf0-f195.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751911AbdLBRVO (ORCPT ); Sat, 2 Dec 2017 12:21:14 -0500 X-Google-Smtp-Source: AGs4zMac0sABLiCmer0bqWCvJFkflTNtH8WvNbjsqies4MFDA35fNFs+GFRgLsa3uxKhDtnc/QRJoQ== From: Ashish Kalra To: labbott@redhat.com, sumit.semwal@linaro.org, gregkh@linuxfoundation.org, arve@android.com, riandrews@android.com Cc: devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org, Ashish Kalra Subject: [PATCH] staging: android: Fix checkpatch.pl error Date: Sat, 2 Dec 2017 22:51:05 +0530 Message-Id: <20171202172105.760-1-eashishkalra@gmail.com> X-Mailer: git-send-email 2.14.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 858 Lines: 27 fixed CHECK: Lines should not end with a '(' reported by checkpatch.pl Signed-off-by: Ashish Kalra --- drivers/staging/android/ion/ion.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/android/ion/ion.c b/drivers/staging/android/ion/ion.c index fa4b75f49859..cada3725e2e4 100644 --- a/drivers/staging/android/ion/ion.c +++ b/drivers/staging/android/ion/ion.c @@ -557,9 +557,9 @@ void ion_device_add_heap(struct ion_heap *heap) char debug_name[64]; snprintf(debug_name, 64, "%s_shrink", heap->name); - debug_file = debugfs_create_file( - debug_name, 0644, dev->debug_root, heap, - &debug_shrink_fops); + debug_file = debugfs_create_file(debug_name, + 0644, dev->debug_root, heap, + &debug_shrink_fops); if (!debug_file) { char buf[256], *path; -- 2.14.1