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.
79 lines
3.1 KiB
Text
79 lines
3.1 KiB
Text
From: Michal Simek <monstr@monstr.eu>
|
|
Subject: Re: [PATCH 02/44] arch/microblaze: Remove unnecessary semicolons
|
|
Date: Mon, 15 Nov 2010 07:37:39 +0100
|
|
Lines: 32
|
|
Message-ID: <4CE0D533.1010407@monstr.eu>
|
|
References: <cover.1289789604.git.joe@perches.com> <5d57b90b488b4338bcdc3f0fbf5f6996842bd44d.1289789604.git.joe@perches.com>
|
|
Reply-To: monstr@monstr.eu
|
|
Mime-Version: 1.0
|
|
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
|
|
Content-Transfer-Encoding: 7bit
|
|
Cc: Jiri Kosina <trivial@kernel.org>,
|
|
microblaze-uclinux@itee.uq.edu.au, linux-kernel@vger.kernel.org
|
|
To: Joe Perches <joe@perches.com>
|
|
X-From: linux-kernel-owner@vger.kernel.org Mon Nov 15 07:38:12 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 1PHshf-0005Kt-RF
|
|
for glk-linux-kernel-3@lo.gmane.org; Mon, 15 Nov 2010 07:38:12 +0100
|
|
Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand
|
|
id S1755918Ab0KOGhs (ORCPT <rfc822;glk-linux-kernel-3@m.gmane.org>);
|
|
Mon, 15 Nov 2010 01:37:48 -0500
|
|
Received: from mail-fx0-f46.google.com ([209.85.161.46]:39130 "EHLO
|
|
mail-fx0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org
|
|
with ESMTP id S1755187Ab0KOGhp (ORCPT
|
|
<rfc822;linux-kernel@vger.kernel.org>);
|
|
Mon, 15 Nov 2010 01:37:45 -0500
|
|
Received: by fxm6 with SMTP id 6so1494962fxm.19
|
|
for <linux-kernel@vger.kernel.org>; Sun, 14 Nov 2010 22:37:43 -0800 (PST)
|
|
Received: by 10.223.70.131 with SMTP id d3mr4100646faj.73.1289803062970;
|
|
Sun, 14 Nov 2010 22:37:42 -0800 (PST)
|
|
Received: from monstr.eu ([178.23.216.97])
|
|
by mx.google.com with ESMTPS id l14sm735429fan.33.2010.11.14.22.37.40
|
|
(version=SSLv3 cipher=RC4-MD5);
|
|
Sun, 14 Nov 2010 22:37:41 -0800 (PST)
|
|
User-Agent: Thunderbird 2.0.0.22 (X11/20090625)
|
|
In-Reply-To: <5d57b90b488b4338bcdc3f0fbf5f6996842bd44d.1289789604.git.joe@perches.com>
|
|
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/1062348>
|
|
|
|
Joe Perches wrote:
|
|
> Signed-off-by: Joe Perches <joe@perches.com>
|
|
> ---
|
|
> arch/microblaze/lib/memmove.c | 2 +-
|
|
> 1 files changed, 1 insertions(+), 1 deletions(-)
|
|
|
|
Applied.
|
|
|
|
Thanks,
|
|
Michal
|
|
|
|
>
|
|
> diff --git a/arch/microblaze/lib/memmove.c b/arch/microblaze/lib/memmove.c
|
|
> index 123e361..810fd68 100644
|
|
> --- a/arch/microblaze/lib/memmove.c
|
|
> +++ b/arch/microblaze/lib/memmove.c
|
|
> @@ -182,7 +182,7 @@ void *memmove(void *v_dst, const void *v_src, __kernel_size_t c)
|
|
> for (; c >= 4; c -= 4) {
|
|
> value = *--i_src;
|
|
> *--i_dst = buf_hold | ((value & 0xFF000000)>> 24);
|
|
> - buf_hold = (value & 0xFFFFFF) << 8;;
|
|
> + buf_hold = (value & 0xFFFFFF) << 8;
|
|
> }
|
|
> #endif
|
|
> /* Realign the source */
|
|
|
|
|
|
--
|
|
Michal Simek, Ing. (M.Eng)
|
|
w: www.monstr.eu p: +42-0-721842854
|
|
Maintainer of Linux kernel 2.6 Microblaze Linux - http://www.monstr.eu/fdt/
|
|
Microblaze U-BOOT custodian
|
|
|
|
|