Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752110AbcJIPfZ (ORCPT ); Sun, 9 Oct 2016 11:35:25 -0400 Received: from mail-pf0-f193.google.com ([209.85.192.193]:35403 "EHLO mail-pf0-f193.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751297AbcJIPfW (ORCPT ); Sun, 9 Oct 2016 11:35:22 -0400 From: Harman Kalra To: gregkh@linuxfoundation.org, arnd@arndb.de Cc: sudipm.mukherjee@gmail.com, devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org, Harman Kalra Subject: [PATCH 3/3] Staging: i4l: icn: Fixed open brace should be on previous line error Date: Sun, 9 Oct 2016 21:05:04 +0530 Message-Id: <1476027304-10426-3-git-send-email-harman4linux@gmail.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1476027304-10426-1-git-send-email-harman4linux@gmail.com> References: <20161009150010.GC26420@kroah.com> <1476027304-10426-1-git-send-email-harman4linux@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 746 Lines: 24 This patch resolves the following error caught by checkpatch.pl: ERROR: that open brace { should be on the previous line Signed-off-by: Harman Kalra --- drivers/staging/i4l/icn/icn.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/staging/i4l/icn/icn.h b/drivers/staging/i4l/icn/icn.h index e273c27..07e2e01 100644 --- a/drivers/staging/i4l/icn/icn.h +++ b/drivers/staging/i4l/icn/icn.h @@ -186,8 +186,7 @@ #ifdef __KERNEL__ static icn_card *cards = (icn_card *) 0; -static u_char chan2bank[] = -{0, 4, 8, 12}; /* for icn_map_channel() */ +static u_char chan2bank[] = {0, 4, 8, 12}; /* for icn_map_channel() */ static icn_dev dev; -- 1.7.9.5