From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754641AbeDBWZG (ORCPT ); Mon, 2 Apr 2018 18:25:06 -0400 Received: from mail-wr0-f193.google.com ([209.85.128.193]:45232 "EHLO mail-wr0-f193.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754457AbeDBWZC (ORCPT ); Mon, 2 Apr 2018 18:25:02 -0400 X-Google-Smtp-Source: AIpwx4/fYy4o3NgcNBNeO04ik1jGcHowVjYoKxwZ18QYpFYWv0HFJsq5EEf+YlD+pq5Kt1n7FRTYgA== From: Nasser Afshin X-Google-Original-From: Nasser Afshin Cc: Nasser Afshin , Mauro Carvalho Chehab , Hans Verkuil , Sakari Ailus , Philipp Zabel , "Gustavo A. R. Silva" , linux-media@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH v2 3/4] media: i2c: tvp5150: Fix open brace placement codding style Date: Tue, 3 Apr 2018 02:53:19 +0430 Message-Id: <20180402222322.30385-4-Afshin.Nasser@gmail.com> X-Mailer: git-send-email 2.15.0 In-Reply-To: <20180402222322.30385-1-Afshin.Nasser@gmail.com> References: <20180402222322.30385-1-Afshin.Nasser@gmail.com> To: unlisted-recipients:; (no To-header on input) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This patch resolves the following checkpatch.pl error: ERROR: that open brace { should be on the previous line Signed-off-by: Nasser Afshin --- drivers/media/i2c/tvp5150.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/media/i2c/tvp5150.c b/drivers/media/i2c/tvp5150.c index fd23138cc6a3..d561d87d219a 100644 --- a/drivers/media/i2c/tvp5150.c +++ b/drivers/media/i2c/tvp5150.c @@ -500,8 +500,8 @@ struct i2c_vbi_ram_value { * and so on. There are 16 possible locations from 0 to 15. */ -static struct i2c_vbi_ram_value vbi_ram_default[] = -{ +static struct i2c_vbi_ram_value vbi_ram_default[] = { + /* * FIXME: Current api doesn't handle all VBI types, those not * yet supported are placed under #if 0 -- 2.15.0