From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752747AbbAUKBc (ORCPT ); Wed, 21 Jan 2015 05:01:32 -0500 Received: from mail-wg0-f49.google.com ([74.125.82.49]:42882 "EHLO mail-wg0-f49.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752231AbbAUKBP (ORCPT ); Wed, 21 Jan 2015 05:01:15 -0500 Date: Wed, 21 Jan 2015 12:01:10 +0200 From: MariamMohamedFawzy To: devel@driverdev.osuosl.org Cc: forest@alittletooquiet.net, gregkh@linuxfoundation.org, tvboxspy@gmail.com, gclement@baobob.org, guido@vanguardiasur.com.ar, veronicca114@gmail.com, linux-kernel@vger.kernel.org Subject: [PATCH] staging: vt6655: fix that open brace { should be on the previous line Message-ID: <20150121100110.GA2652@mariam-VirtualBox> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This patch fixes the following checkpatch.pl error: fix that open brace { should be on the previous line Signed-off-by: MariamMohamedFawzy --- drivers/staging/vt6655/card.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/vt6655/card.c b/drivers/staging/vt6655/card.c index 47801ca..1cdcf49 100644 --- a/drivers/staging/vt6655/card.c +++ b/drivers/staging/vt6655/card.c @@ -68,8 +68,8 @@ /*--------------------- Static Variables --------------------------*/ -static const unsigned short cwRXBCNTSFOff[MAX_RATE] = -{17, 17, 17, 17, 34, 23, 17, 11, 8, 5, 4, 3}; +static const unsigned short cwRXBCNTSFOff[MAX_RATE] = { + 17, 17, 17, 17, 34, 23, 17, 11, 8, 5, 4, 3}; /*--------------------- Static Functions --------------------------*/ -- 1.9.1