Linux PARISC architecture development
 help / color / mirror / Atom feed
* [PATCH] misplaced parenthesis?
@ 2009-05-15 19:23 Roel Kluin
  2009-05-16  4:14 ` Randolph Chung
  0 siblings, 1 reply; 7+ messages in thread
From: Roel Kluin @ 2009-05-15 19:23 UTC (permalink / raw)
  To: kyle; +Cc: linux-parisc, Andrew Morton

Fix misplaced parenthesis.

Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
---
I think this is what was intended? Note that this patch may affect
profiling.

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)) {

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2009-06-26  1:38 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-15 19:23 [PATCH] misplaced parenthesis? Roel Kluin
2009-05-16  4:14 ` Randolph Chung
2009-05-16  5:48   ` Matt Turner
2009-05-18  1:42     ` Randolph Chung
2009-06-23 14:53       ` Randolph Chung
2009-06-25 20:29         ` Andrew Morton
2009-06-26  1:38           ` Randolph Chung

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox