From patchwork Fri May 15 19:23:29 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Roel Kluin X-Patchwork-Id: 24188 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n4FJNVq9008228 for ; Fri, 15 May 2009 19:23:31 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751466AbZEOTX2 (ORCPT ); Fri, 15 May 2009 15:23:28 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752238AbZEOTX2 (ORCPT ); Fri, 15 May 2009 15:23:28 -0400 Received: from ey-out-2122.google.com ([74.125.78.26]:15568 "EHLO ey-out-2122.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751466AbZEOTX2 (ORCPT ); Fri, 15 May 2009 15:23:28 -0400 Received: by ey-out-2122.google.com with SMTP id 9so643768eyd.37 for ; Fri, 15 May 2009 12:23:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:content-type :content-transfer-encoding; bh=pjgQBMD8B1YKfHckOu7RpbBXiWhSGyy/SSZ5zf24Fz4=; b=QTWNWsuXpz9ZLqoNmqH67UsI+OATMLQ6UPLonjYS04sZL7BpmJf8yVF1lsG8T5NsOS uLYxRLxIhRYVeF7rY4tDLTJTJV5tGVrZNQ0ZVMS5IzLz3Gowsw5xl+o4a68J4Q4atToH 3XJIt0keElE1KqczIVNcT9yhFke1KwrENCDDI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :content-type:content-transfer-encoding; b=nZ7nIqp+M5cTEv2kt2ySHIOsWdokbjlyWBZ4uhd/IJ80ry6g844H24l2H8lGqIfNbP Zxn9LfLAcfFhxpVaRFph46PJuzoLcDCh+wtRwvV+5aR2iZTcg8jcHgLuJarMH86AHuVL pdzeMg7F/2jkpZpp/dr6WyTYeRO4lwilU8C6Q= Received: by 10.210.38.5 with SMTP id l5mr4565270ebl.54.1242415408304; Fri, 15 May 2009 12:23:28 -0700 (PDT) Received: from ?192.168.1.115? (d133062.upc-d.chello.nl [213.46.133.62]) by mx.google.com with ESMTPS id 5sm2176211eyf.8.2009.05.15.12.23.27 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 15 May 2009 12:23:27 -0700 (PDT) Message-ID: <4A0DC131.8020606@gmail.com> Date: Fri, 15 May 2009 21:23:29 +0200 From: Roel Kluin User-Agent: Thunderbird 2.0.0.21 (X11/20090302) MIME-Version: 1.0 To: kyle@mcmartin.ca CC: linux-parisc@vger.kernel.org, Andrew Morton Subject: [PATCH] misplaced parenthesis? Sender: linux-parisc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-parisc@vger.kernel.org Fix misplaced parenthesis. Signed-off-by: Roel Kluin --- I think this is what was intended? Note that this patch may affect profiling. -- To unsubscribe from this list: send the line "unsubscribe linux-parisc" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/arch/parisc/lib/memcpy.c b/arch/parisc/lib/memcpy.c index bbda909..30207b0 100644 --- a/arch/parisc/lib/memcpy.c +++ b/arch/parisc/lib/memcpy.c @@ -405,7 +405,7 @@ byte_copy: unaligned_copy: /* possibly we are aligned on a word, but not on a double... */ - if (likely(t1 & (sizeof(unsigned int)-1)) == 0) { + if (likely(t1 & (sizeof(unsigned int)-1) == 0)) { t2 = src & (sizeof(unsigned int) - 1); if (unlikely(t2 != 0)) {