Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S941309AbcJGRPI (ORCPT ); Fri, 7 Oct 2016 13:15:08 -0400 Received: from mail-pa0-f65.google.com ([209.85.220.65]:32809 "EHLO mail-pa0-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S938891AbcJGROm (ORCPT ); Fri, 7 Oct 2016 13:14:42 -0400 From: Harman Kalra To: gregkh@linuxfoundation.org, sudipm.mukherjee@gmail.co Cc: devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org, Harman Kalra Subject: [PATCH 2/3] Staging: i4l: Error "open brace { should be on the previous line" fixed. Date: Fri, 7 Oct 2016 22:27:55 +0530 Message-Id: <1475859476-3524-2-git-send-email-harman4linux@gmail.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1475859476-3524-1-git-send-email-harman4linux@gmail.com> References: <20161005065219.GD11013@kroah.com> <1475859476-3524-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: 709 Lines: 22 Errors "open brace { should be on the previous line" caught by checkpatch.pl fixed. 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 aa4c593..8d0182c 100644 --- a/drivers/staging/i4l/icn/icn.h +++ b/drivers/staging/i4l/icn/icn.h @@ -187,8 +187,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