Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=80f76c54bd23c45b37f03a4d49ef4b760430dbcc
Commit:     80f76c54bd23c45b37f03a4d49ef4b760430dbcc
Parent:     138712218e7582e274990cdf77dc798b2aa4fa99
Author:     [EMAIL PROTECTED] <[EMAIL PROTECTED]>
AuthorDate: Wed Nov 7 16:16:22 2007 +0900
Committer:  Haavard Skinnemoen <[EMAIL PROTECTED]>
CommitDate: Thu Nov 15 13:47:20 2007 +0100

    [AVR32] Fix duplicate clock index in at32ap machine code
    
    There's a duplicate clock index between USART0 and USART1 which may be
    causing system crashes when USART0 is used.  Change the USART0 index
    to '3', indicating the clock that is actually used by USART0.
    
    Signed-off-by: Ben Nizette <[EMAIL PROTECTED]>
    Signed-off-by: Haavard Skinnemoen <[EMAIL PROTECTED]>
---
 arch/avr32/mach-at32ap/at32ap7000.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/avr32/mach-at32ap/at32ap7000.c 
b/arch/avr32/mach-at32ap/at32ap7000.c
index 293f03c..7c4388f 100644
--- a/arch/avr32/mach-at32ap/at32ap7000.c
+++ b/arch/avr32/mach-at32ap/at32ap7000.c
@@ -690,7 +690,7 @@ static struct resource atmel_usart0_resource[] = {
        IRQ(6),
 };
 DEFINE_DEV_DATA(atmel_usart, 0);
-DEV_CLK(usart, atmel_usart0, pba, 4);
+DEV_CLK(usart, atmel_usart0, pba, 3);
 
 static struct atmel_uart_data atmel_usart1_data = {
        .use_dma_tx     = 1,
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to