more danube 2 ifxmips transitions
[openwrt.git] / target / linux / ifxmips / files / arch / mips / danube / reset.c
index cb1793c..a1f7a46 100644 (file)
@@ -1,5 +1,5 @@
 /*
 /*
- *   arch/mips/danube/prom.c
+ *   arch/mips/ifxmips/prom.c
  *
  *   This program is free software; you can redistribute it and/or modify
  *   it under the terms of the GNU General Public License as published by
  *
  *   This program is free software; you can redistribute it and/or modify
  *   it under the terms of the GNU General Public License as published by
@@ -17,7 +17,7 @@
  *
  *   Copyright (C) 2005 infineon
  *
  *
  *   Copyright (C) 2005 infineon
  *
- *   Rewrite of Infineon Danube code, thanks to infineon for the support,
+ *   Rewrite of Infineon IFXMips code, thanks to infineon for the support,
  *   software and hardware
  *
  *   Copyright (C) 2007 John Crispin <blogic@openwrt.org> 
  *   software and hardware
  *
  *   Copyright (C) 2007 John Crispin <blogic@openwrt.org> 
 #include <asm/reboot.h>
 #include <asm/system.h>
 #include <asm/io.h>
 #include <asm/reboot.h>
 #include <asm/system.h>
 #include <asm/io.h>
-#include <asm/danube/danube.h>
+#include <asm/ifxmips/ifxmips.h>
 
 static void
 
 static void
-danube_machine_restart (char *command)
+ifxmips_machine_restart (char *command)
 {
        printk (KERN_NOTICE "System restart\n");
        local_irq_disable ();
 
 {
        printk (KERN_NOTICE "System restart\n");
        local_irq_disable ();
 
-       writel(readl(DANUBE_RCU_REQ) | DANUBE_RST_ALL, DANUBE_RCU_REQ);
+       writel(readl(IFXMIPS_RCU_REQ) | IFXMIPS_RST_ALL, IFXMIPS_RCU_REQ);
        for (;;);
 }
 
 static void
        for (;;);
 }
 
 static void
-danube_machine_halt (void)
+ifxmips_machine_halt (void)
 {
        printk (KERN_NOTICE "System halted.\n");
        local_irq_disable ();
 {
        printk (KERN_NOTICE "System halted.\n");
        local_irq_disable ();
@@ -50,7 +50,7 @@ danube_machine_halt (void)
 }
 
 static void
 }
 
 static void
-danube_machine_power_off (void)
+ifxmips_machine_power_off (void)
 {
        printk (KERN_NOTICE "Please turn off the power now.\n");
        local_irq_disable ();
 {
        printk (KERN_NOTICE "Please turn off the power now.\n");
        local_irq_disable ();
@@ -58,9 +58,9 @@ danube_machine_power_off (void)
 }
 
 void
 }
 
 void
-danube_reboot_setup (void)
+ifxmips_reboot_setup (void)
 {
 {
-       _machine_restart = danube_machine_restart;
-       _machine_halt = danube_machine_halt;
-       pm_power_off = danube_machine_power_off;
+       _machine_restart = ifxmips_machine_restart;
+       _machine_halt = ifxmips_machine_halt;
+       pm_power_off = ifxmips_machine_power_off;
 }
 }
This page took 0.023047 seconds and 4 git commands to generate.