From: Grant Likely Subject: Re: [PATCH 28/44] drivers/spi: Remove unnecessary semicolons Date: Sun, 14 Nov 2010 20:57:42 -0700 Lines: 41 Message-ID: <20101115035742.GA19965@angua.secretlab.ca> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Jiri Kosina , David Brownell , Wan ZongShun , spi-devel-general@lists.sourceforge.net, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org To: Joe Perches X-From: linux-kernel-owner@vger.kernel.org Mon Nov 15 04:58:26 2010 Return-path: Envelope-to: glk-linux-kernel-3@lo.gmane.org Received: from vger.kernel.org ([209.132.180.67]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1PHqD3-0006P9-7p for glk-linux-kernel-3@lo.gmane.org; Mon, 15 Nov 2010 04:58:25 +0100 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757510Ab0KOD5r (ORCPT ); Sun, 14 Nov 2010 22:57:47 -0500 Received: from mail-yx0-f174.google.com ([209.85.213.174]:43928 "EHLO mail-yx0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754294Ab0KOD5q (ORCPT ); Sun, 14 Nov 2010 22:57:46 -0500 Received: by yxn35 with SMTP id 35so916234yxn.19 for ; Sun, 14 Nov 2010 19:57:46 -0800 (PST) Received: by 10.91.10.20 with SMTP id n20mr7068735agi.56.1289793465914; Sun, 14 Nov 2010 19:57:45 -0800 (PST) Received: from angua (S01060002b3d79728.cg.shawcable.net [70.72.87.49]) by mx.google.com with ESMTPS id d15sm3276149ana.20.2010.11.14.19.57.43 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 14 Nov 2010 19:57:45 -0800 (PST) Received: by angua (Postfix, from userid 1000) id 238853C00E5; Sun, 14 Nov 2010 20:57:42 -0700 (MST) Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Archived-At: On Sun, Nov 14, 2010 at 07:04:47PM -0800, Joe Perches wrote: > Signed-off-by: Joe Perches applied, thanks. g. > --- > drivers/spi/amba-pl022.c | 2 +- > drivers/spi/spi_nuc900.c | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/spi/amba-pl022.c b/drivers/spi/amba-pl022.c > index fb3d1b3..2e50631 100644 > --- a/drivers/spi/amba-pl022.c > +++ b/drivers/spi/amba-pl022.c > @@ -956,7 +956,7 @@ static int configure_dma(struct pl022 *pl022) > tx_conf.dst_addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES; > break; > case WRITING_U32: > - tx_conf.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;; > + tx_conf.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES; > break; > } > > diff --git a/drivers/spi/spi_nuc900.c b/drivers/spi/spi_nuc900.c > index dff63be..d5be18b 100644 > --- a/drivers/spi/spi_nuc900.c > +++ b/drivers/spi/spi_nuc900.c > @@ -449,7 +449,7 @@ err_iomap: > release_mem_region(hw->res->start, resource_size(hw->res)); > kfree(hw->ioarea); > err_pdata: > - spi_master_put(hw->master);; > + spi_master_put(hw->master); > > err_nomem: > return err; > -- > 1.7.3.1.g432b3.dirty >