From mboxrd@z Thu Jan 1 00:00:00 1970 From: Albert ARIBAUD Date: Mon, 28 Nov 2011 13:29:32 +0100 Subject: [U-Boot] [PATCH] vision2: Fix checkpatch warning -- added to next In-Reply-To: <1321891059-15087-1-git-send-email-fabio.estevam@freescale.com> References: <1321891059-15087-1-git-send-email-fabio.estevam@freescale.com> Message-ID: <4ED37EAC.2050501@aribaud.net> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Fabio, Le 21/11/2011 16:57, Fabio Estevam a ?crit : > Fix the following checkpatch warning: > > WARNING: braces {} are not necessary for single statement blocks > > Signed-off-by: Fabio Estevam > --- > board/ttcontrol/vision2/vision2.c | 3 +-- > 1 files changed, 1 insertions(+), 2 deletions(-) > > diff --git a/board/ttcontrol/vision2/vision2.c b/board/ttcontrol/vision2/vision2.c > index f556d30..282de95 100644 > --- a/board/ttcontrol/vision2/vision2.c > +++ b/board/ttcontrol/vision2/vision2.c > @@ -428,9 +428,8 @@ static void setup_gpios(void) > gpio_direction_output(4, 1); > > gpio_direction_output(7, 0); > - for (i = 65; i< 71; i++) { > + for (i = 65; i< 71; i++) > gpio_direction_output(i, 0); > - } > > gpio_direction_output(94, 0); (chose to add to next as it is not a bugfix per se; vision2 builds fine already without this patch) Added to u-boot-arm/next, thanks! Amicalement, -- Albert.