[<prev] [next>] [day] [month] [year] [list]
Message-Id: <11544431912734-git-send-email-hskinnemoen@atmel.com>
Date: Tue, 01 Aug 2006 16:39:51 +0200
From: Haavard Skinnemoen <hskinnemoen@...el.com>
To: akpm@...l.org
Cc: linux-kernel@...r.kernel.org,
Haavard Skinnemoen <hskinnemoen@...el.com>
Subject: [PATCH] AVR32: Fix bug in __avr32_asr64
libgcc uses a logical shift right instruction in one place we're
using an arithmetic shift right. I believe libgcc is right.
This fixes some weirdness in the timer code that I've seen lately.
Signed-off-by: Haavard Skinnemoen <hskinnemoen@...el.com>
---
arch/avr32/lib/__avr32_asr64.S | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/avr32/lib/__avr32_asr64.S b/arch/avr32/lib/__avr32_asr64.S
index cbbd478..368b6bc 100644
--- a/arch/avr32/lib/__avr32_asr64.S
+++ b/arch/avr32/lib/__avr32_asr64.S
@@ -20,8 +20,8 @@ __avr32_asr64:
brle 1f
lsl r8, r11, r9
+ lsr r10, r10, r12
asr r11, r11, r12
- asr r10, r10, r12
or r10, r8
retal r12
--
1.4.0
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists