X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/cf6dac9a38ac194545a5169d51667e25682bb086..db2602aef4a7d2a9047941be5ff3957bc1d5b52e:/target/linux/ifxmips/files/arch/mips/danube/reset.c diff --git a/target/linux/ifxmips/files/arch/mips/danube/reset.c b/target/linux/ifxmips/files/arch/mips/danube/reset.c index 333c29d46..a1f7a464b 100644 --- a/target/linux/ifxmips/files/arch/mips/danube/reset.c +++ b/target/linux/ifxmips/files/arch/mips/danube/reset.c @@ -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 @@ -17,7 +17,7 @@ * * 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 @@ -29,10 +29,10 @@ #include #include #include -#include +#include static void -danube_machine_restart (char *command) +ifxmips_machine_restart (char *command) { printk (KERN_NOTICE "System restart\n"); local_irq_disable (); @@ -42,7 +42,7 @@ danube_machine_restart (char *command) } static void -danube_machine_halt (void) +ifxmips_machine_halt (void) { printk (KERN_NOTICE "System halted.\n"); local_irq_disable (); @@ -50,7 +50,7 @@ danube_machine_halt (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 (); @@ -58,9 +58,9 @@ danube_machine_power_off (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; }