Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7f2862c34521ee6006f9c2678d68a02dc57b5444
Commit:     7f2862c34521ee6006f9c2678d68a02dc57b5444
Parent:     7f50382dc87988d618f2d47364b22ad5973a968d
Author:     Guennadi Liakhovetski <[EMAIL PROTECTED]>
AuthorDate: Sun Aug 26 00:08:11 2007 +0200
Committer:  Kumar Gala <[EMAIL PROTECTED]>
CommitDate: Fri Sep 14 08:51:27 2007 -0500

    [POWERPC] linkstation updates
    
    1. Fix RTC type - it is a rs5c372a, not rs5c372b
    2. Configure both UART interrupts edge-triggered
    3. Add a license header to ls_uart.c
    4. Check for running on linkstation in a late_initcall() function. Needed
       for multiplatform builds, even though linkstation doesn't support them
       yet
    5. Remove unneeded #include from linkstation.c
    
    Signed-off-by: Guennadi Liakhovetski <[EMAIL PROTECTED]>
    Signed-off-by: Kumar Gala <[EMAIL PROTECTED]>
---
 arch/powerpc/boot/dts/kuroboxHD.dts              |    4 ++--
 arch/powerpc/boot/dts/kuroboxHG.dts              |    4 ++--
 arch/powerpc/platforms/embedded6xx/linkstation.c |    1 -
 arch/powerpc/platforms/embedded6xx/ls_uart.c     |   14 ++++++++++++++
 4 files changed, 18 insertions(+), 5 deletions(-)

diff --git a/arch/powerpc/boot/dts/kuroboxHD.dts 
b/arch/powerpc/boot/dts/kuroboxHD.dts
index b0eeff0..a7b3714 100644
--- a/arch/powerpc/boot/dts/kuroboxHD.dts
+++ b/arch/powerpc/boot/dts/kuroboxHD.dts
@@ -69,7 +69,7 @@ XXXX add flash parts, rtc, ??
 
                        [EMAIL PROTECTED] {
                                device_type = "rtc";
-                               compatible = "ricoh,rs5c372b";
+                               compatible = "ricoh,rs5c372a";
                                reg = <32>;
                        };
                };
@@ -80,7 +80,7 @@ XXXX add flash parts, rtc, ??
                        reg = <80004500 8>;
                        clock-frequency = <5d08d88>;
                        current-speed = <2580>;
-                       interrupts = <9 2>;
+                       interrupts = <9 0>;
                        interrupt-parent = <&mpic>;
                };
 
diff --git a/arch/powerpc/boot/dts/kuroboxHG.dts 
b/arch/powerpc/boot/dts/kuroboxHG.dts
index ccd15a2..a0007b9 100644
--- a/arch/powerpc/boot/dts/kuroboxHG.dts
+++ b/arch/powerpc/boot/dts/kuroboxHG.dts
@@ -69,7 +69,7 @@ XXXX add flash parts, rtc, ??
 
                        [EMAIL PROTECTED] {
                                device_type = "rtc";
-                               compatible = "ricoh,rs5c372b";
+                               compatible = "ricoh,rs5c372a";
                                reg = <32>;
                        };
                };
@@ -80,7 +80,7 @@ XXXX add flash parts, rtc, ??
                        reg = <80004500 8>;
                        clock-frequency = <7c044a8>;
                        current-speed = <2580>;
-                       interrupts = <9 2>;
+                       interrupts = <9 0>;
                        interrupt-parent = <&mpic>;
                };
 
diff --git a/arch/powerpc/platforms/embedded6xx/linkstation.c 
b/arch/powerpc/platforms/embedded6xx/linkstation.c
index 61ca02c..f392374 100644
--- a/arch/powerpc/platforms/embedded6xx/linkstation.c
+++ b/arch/powerpc/platforms/embedded6xx/linkstation.c
@@ -11,7 +11,6 @@
  */
 
 #include <linux/kernel.h>
-#include <linux/pci.h>
 #include <linux/initrd.h>
 #include <linux/mtd/physmap.h>
 
diff --git a/arch/powerpc/platforms/embedded6xx/ls_uart.c 
b/arch/powerpc/platforms/embedded6xx/ls_uart.c
index 0d9f150..c99264c 100644
--- a/arch/powerpc/platforms/embedded6xx/ls_uart.c
+++ b/arch/powerpc/platforms/embedded6xx/ls_uart.c
@@ -1,3 +1,14 @@
+/*
+ * AVR power-management chip interface for the Buffalo Linkstation /
+ * Kurobox Platform.
+ *
+ * Author: 2006 (c) G. Liakhovetski
+ *      [EMAIL PROTECTED]
+ *
+ * This file is licensed under the terms of the GNU General Public License
+ * version 2.  This program is licensed "as is" without any warranty of
+ * any kind, whether express or implied.
+ */
 #include <linux/workqueue.h>
 #include <linux/string.h>
 #include <linux/delay.h>
@@ -106,6 +117,9 @@ static int __init ls_uarts_init(void)
        phys_addr_t phys_addr;
        int len;
 
+       if (!machine_is(linkstation))
+               return 0;
+
        avr = of_find_node_by_path("/soc10x/[EMAIL PROTECTED]");
        if (!avr)
                return -EINVAL;
-
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