mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
e08f5f76e4
These 210 messages are in several long threads, which is good for testing our threading code, and may be useful just as a larger test corpus in the future.
93 lines
3.5 KiB
Text
93 lines
3.5 KiB
Text
From: Grant Likely <grant.likely@secretlab.ca>
|
|
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: <cover.1289789604.git.joe@perches.com>
|
|
<fe5e5e0efbd97eaa32530eef5ed47efdc3252dad.1289789605.git.joe@perches.com>
|
|
Mime-Version: 1.0
|
|
Content-Type: text/plain; charset=us-ascii
|
|
Cc: Jiri Kosina <trivial@kernel.org>,
|
|
David Brownell <dbrownell@users.sourceforge.net>,
|
|
Wan ZongShun <mcuos.com@gmail.com>,
|
|
spi-devel-general@lists.sourceforge.net,
|
|
linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org
|
|
To: Joe Perches <joe@perches.com>
|
|
X-From: linux-kernel-owner@vger.kernel.org Mon Nov 15 04:58:26 2010
|
|
Return-path: <linux-kernel-owner@vger.kernel.org>
|
|
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 <linux-kernel-owner@vger.kernel.org>)
|
|
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 <rfc822;glk-linux-kernel-3@m.gmane.org>);
|
|
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
|
|
<rfc822;linux-kernel@vger.kernel.org>);
|
|
Sun, 14 Nov 2010 22:57:46 -0500
|
|
Received: by yxn35 with SMTP id 35so916234yxn.19
|
|
for <linux-kernel@vger.kernel.org>; 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: <fe5e5e0efbd97eaa32530eef5ed47efdc3252dad.1289789605.git.joe@perches.com>
|
|
User-Agent: Mutt/1.5.20 (2009-06-14)
|
|
Sender: linux-kernel-owner@vger.kernel.org
|
|
Precedence: bulk
|
|
List-ID: <linux-kernel.vger.kernel.org>
|
|
X-Mailing-List: linux-kernel@vger.kernel.org
|
|
Archived-At: <http://permalink.gmane.org/gmane.linux.kernel/1062328>
|
|
|
|
On Sun, Nov 14, 2010 at 07:04:47PM -0800, Joe Perches wrote:
|
|
> Signed-off-by: Joe Perches <joe@perches.com>
|
|
|
|
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
|
|
>
|
|
|
|
|