Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
fcdb27ad
Commit
fcdb27ad
authored
Jan 18, 2006
by
Ralf Baechle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[MIPS] Rename _machine_power_off to pm_power_off so the kernel builds again.
Signed-off-by:
Ralf Baechle
<
ralf@linux-mips.org
>
parent
9414d362
Changes
30
Hide whitespace changes
Inline
Side-by-side
Showing
30 changed files
with
79 additions
and
40 deletions
+79
-40
arch/mips/au1000/common/setup.c
arch/mips/au1000/common/setup.c
+2
-1
arch/mips/cobalt/setup.c
arch/mips/cobalt/setup.c
+3
-2
arch/mips/ddb5xxx/ddb5074/setup.c
arch/mips/ddb5xxx/ddb5074/setup.c
+2
-1
arch/mips/ddb5xxx/ddb5476/setup.c
arch/mips/ddb5xxx/ddb5476/setup.c
+2
-1
arch/mips/ddb5xxx/ddb5477/setup.c
arch/mips/ddb5xxx/ddb5477/setup.c
+2
-1
arch/mips/dec/setup.c
arch/mips/dec/setup.c
+2
-1
arch/mips/gt64120/ev64120/setup.c
arch/mips/gt64120/ev64120/setup.c
+3
-1
arch/mips/gt64120/momenco_ocelot/setup.c
arch/mips/gt64120/momenco_ocelot/setup.c
+4
-2
arch/mips/ite-boards/generic/it8172_setup.c
arch/mips/ite-boards/generic/it8172_setup.c
+2
-1
arch/mips/jazz/setup.c
arch/mips/jazz/setup.c
+3
-1
arch/mips/jmr3927/rbhma3100/setup.c
arch/mips/jmr3927/rbhma3100/setup.c
+2
-1
arch/mips/kernel/reset.c
arch/mips/kernel/reset.c
+6
-4
arch/mips/lasat/reset.c
arch/mips/lasat/reset.c
+4
-1
arch/mips/mips-boards/generic/reset.c
arch/mips/mips-boards/generic/reset.c
+3
-2
arch/mips/momentum/jaguar_atx/setup.c
arch/mips/momentum/jaguar_atx/setup.c
+2
-1
arch/mips/momentum/ocelot_3/setup.c
arch/mips/momentum/ocelot_3/setup.c
+3
-1
arch/mips/momentum/ocelot_c/setup.c
arch/mips/momentum/ocelot_c/setup.c
+3
-1
arch/mips/momentum/ocelot_g/setup.c
arch/mips/momentum/ocelot_g/setup.c
+3
-1
arch/mips/philips/pnx8550/common/setup.c
arch/mips/philips/pnx8550/common/setup.c
+2
-1
arch/mips/pmc-sierra/yosemite/prom.c
arch/mips/pmc-sierra/yosemite/prom.c
+2
-1
arch/mips/sgi-ip22/ip22-reset.c
arch/mips/sgi-ip22/ip22-reset.c
+3
-2
arch/mips/sgi-ip27/ip27-reset.c
arch/mips/sgi-ip27/ip27-reset.c
+3
-2
arch/mips/sgi-ip32/ip32-reset.c
arch/mips/sgi-ip32/ip32-reset.c
+2
-1
arch/mips/sibyte/cfe/setup.c
arch/mips/sibyte/cfe/setup.c
+2
-1
arch/mips/sibyte/sb1250/prom.c
arch/mips/sibyte/sb1250/prom.c
+2
-1
arch/mips/sni/setup.c
arch/mips/sni/setup.c
+3
-2
arch/mips/tx4927/toshiba_rbtx4927/toshiba_rbtx4927_setup.c
arch/mips/tx4927/toshiba_rbtx4927/toshiba_rbtx4927_setup.c
+3
-1
arch/mips/tx4938/toshiba_rbtx4938/setup.c
arch/mips/tx4938/toshiba_rbtx4938/setup.c
+3
-1
arch/mips/vr41xx/common/pmu.c
arch/mips/vr41xx/common/pmu.c
+2
-1
include/asm-mips/reboot.h
include/asm-mips/reboot.h
+1
-2
No files found.
arch/mips/au1000/common/setup.c
View file @
fcdb27ad
...
...
@@ -33,6 +33,7 @@
#include <linux/delay.h>
#include <linux/interrupt.h>
#include <linux/module.h>
#include <linux/pm.h>
#include <asm/cpu.h>
#include <asm/bootinfo.h>
...
...
@@ -125,7 +126,7 @@ void __init plat_setup(void)
#endif
_machine_restart
=
au1000_restart
;
_machine_halt
=
au1000_halt
;
_machine
_power_off
=
au1000_power_off
;
pm
_power_off
=
au1000_power_off
;
board_time_init
=
au1xxx_time_init
;
board_timer_setup
=
au1xxx_timer_setup
;
...
...
arch/mips/cobalt/setup.c
View file @
fcdb27ad
...
...
@@ -5,7 +5,7 @@
* License. See the file "COPYING" in the main directory of this archive
* for more details.
*
* Copyright (C) 1996, 1997, 2004 by Ralf Baechle (ralf@linux-mips.org)
* Copyright (C) 1996, 1997, 2004
, 05
by Ralf Baechle (ralf@linux-mips.org)
* Copyright (C) 2001, 2002, 2003 by Liam Davies (ldavies@agile.tv)
*
*/
...
...
@@ -13,6 +13,7 @@
#include <linux/interrupt.h>
#include <linux/pci.h>
#include <linux/init.h>
#include <linux/pm.h>
#include <linux/serial.h>
#include <linux/serial_core.h>
...
...
@@ -99,7 +100,7 @@ void __init plat_setup(void)
_machine_restart
=
cobalt_machine_restart
;
_machine_halt
=
cobalt_machine_halt
;
_machine
_power_off
=
cobalt_machine_power_off
;
pm
_power_off
=
cobalt_machine_power_off
;
board_timer_setup
=
cobalt_timer_setup
;
...
...
arch/mips/ddb5xxx/ddb5074/setup.c
View file @
fcdb27ad
...
...
@@ -14,6 +14,7 @@
#include <linux/ide.h>
#include <linux/ioport.h>
#include <linux/irq.h>
#include <linux/pm.h>
#include <asm/addrspace.h>
#include <asm/bcache.h>
...
...
@@ -95,7 +96,7 @@ void __init plat_setup(void)
_machine_restart
=
ddb_machine_restart
;
_machine_halt
=
ddb_machine_halt
;
_machine
_power_off
=
ddb_machine_power_off
;
pm
_power_off
=
ddb_machine_power_off
;
ddb_out32
(
DDB_BAR0
,
0
);
...
...
arch/mips/ddb5xxx/ddb5476/setup.c
View file @
fcdb27ad
...
...
@@ -11,6 +11,7 @@
#include <linux/types.h>
#include <linux/sched.h>
#include <linux/pci.h>
#include <linux/pm.h>
#include <asm/addrspace.h>
#include <asm/bcache.h>
...
...
@@ -133,7 +134,7 @@ void __init plat_setup(void)
_machine_restart
=
ddb_machine_restart
;
_machine_halt
=
ddb_machine_halt
;
_machine
_power_off
=
ddb_machine_power_off
;
pm
_power_off
=
ddb_machine_power_off
;
/* request io port/mem resources */
if
(
request_resource
(
&
ioport_resource
,
&
ddb5476_ioport
.
dma1
)
||
...
...
arch/mips/ddb5xxx/ddb5477/setup.c
View file @
fcdb27ad
...
...
@@ -26,6 +26,7 @@
#include <linux/major.h>
#include <linux/kdev_t.h>
#include <linux/root_dev.h>
#include <linux/pm.h>
#include <asm/cpu.h>
#include <asm/bootinfo.h>
...
...
@@ -182,7 +183,7 @@ void __init plat_setup(void)
_machine_restart
=
ddb_machine_restart
;
_machine_halt
=
ddb_machine_halt
;
_machine
_power_off
=
ddb_machine_power_off
;
pm
_power_off
=
ddb_machine_power_off
;
/* setup resource limits */
ioport_resource
.
end
=
DDB_PCI0_IO_SIZE
+
DDB_PCI1_IO_SIZE
-
1
;
...
...
arch/mips/dec/setup.c
View file @
fcdb27ad
...
...
@@ -17,6 +17,7 @@
#include <linux/sched.h>
#include <linux/spinlock.h>
#include <linux/types.h>
#include <linux/pm.h>
#include <asm/bootinfo.h>
#include <asm/cpu.h>
...
...
@@ -158,7 +159,7 @@ void __init plat_setup(void)
_machine_restart
=
dec_machine_restart
;
_machine_halt
=
dec_machine_halt
;
_machine
_power_off
=
dec_machine_power_off
;
pm
_power_off
=
dec_machine_power_off
;
ioport_resource
.
start
=
~
0UL
;
ioport_resource
.
end
=
0UL
;
...
...
arch/mips/gt64120/ev64120/setup.c
View file @
fcdb27ad
...
...
@@ -34,6 +34,8 @@
#include <linux/interrupt.h>
#include <linux/pci.h>
#include <linux/timex.h>
#include <linux/pm.h>
#include <asm/bootinfo.h>
#include <asm/page.h>
#include <asm/io.h>
...
...
@@ -73,7 +75,7 @@ void __init plat_setup(void)
{
_machine_restart
=
galileo_machine_restart
;
_machine_halt
=
galileo_machine_halt
;
_machine
_power_off
=
galileo_machine_power_off
;
pm
_power_off
=
galileo_machine_power_off
;
board_time_init
=
gt64120_time_init
;
set_io_port_base
(
KSEG1
);
...
...
arch/mips/gt64120/momenco_ocelot/setup.c
View file @
fcdb27ad
...
...
@@ -4,7 +4,7 @@
* BRIEF MODULE DESCRIPTION
* Momentum Computer Ocelot (CP7000) - board dependent boot routines
*
* Copyright (C) 1996, 1997, 2001
Ralf Baechle
* Copyright (C) 1996, 1997, 2001
, 06 Ralf Baechle (ralf@linux-mips.org)
* Copyright (C) 2000 RidgeRun, Inc.
* Copyright (C) 2001 Red Hat, Inc.
* Copyright (C) 2002 Momentum Computer
...
...
@@ -47,6 +47,8 @@
#include <linux/pci.h>
#include <linux/timex.h>
#include <linux/vmalloc.h>
#include <linux/pm.h>
#include <asm/time.h>
#include <asm/bootinfo.h>
#include <asm/page.h>
...
...
@@ -159,7 +161,7 @@ void __init plat_setup(void)
_machine_restart
=
momenco_ocelot_restart
;
_machine_halt
=
momenco_ocelot_halt
;
_machine
_power_off
=
momenco_ocelot_power_off
;
pm
_power_off
=
momenco_ocelot_power_off
;
/*
* initrd_start = (ulong)ocelot_initrd_start;
...
...
arch/mips/ite-boards/generic/it8172_setup.c
View file @
fcdb27ad
...
...
@@ -34,6 +34,7 @@
#include <linux/major.h>
#include <linux/kdev_t.h>
#include <linux/root_dev.h>
#include <linux/pm.h>
#include <asm/cpu.h>
#include <asm/time.h>
...
...
@@ -125,7 +126,7 @@ void __init plat_setup(void)
_machine_restart
=
it8172_restart
;
_machine_halt
=
it8172_halt
;
_machine
_power_off
=
it8172_power_off
;
pm
_power_off
=
it8172_power_off
;
/*
* IO/MEM resources.
...
...
arch/mips/jazz/setup.c
View file @
fcdb27ad
...
...
@@ -19,6 +19,8 @@
#include <linux/console.h>
#include <linux/fb.h>
#include <linux/ide.h>
#include <linux/pm.h>
#include <asm/bootinfo.h>
#include <asm/irq.h>
#include <asm/jazz.h>
...
...
@@ -79,7 +81,7 @@ void __init plat_setup(void)
_machine_restart
=
jazz_machine_restart
;
_machine_halt
=
jazz_machine_halt
;
_machine
_power_off
=
jazz_machine_power_off
;
pm
_power_off
=
jazz_machine_power_off
;
#warning "Somebody should check if screen_info is ok for Jazz."
...
...
arch/mips/jmr3927/rbhma3100/setup.c
View file @
fcdb27ad
...
...
@@ -44,6 +44,7 @@
#include <linux/ioport.h>
#include <linux/param.h>
/* for HZ */
#include <linux/delay.h>
#include <linux/pm.h>
#ifdef CONFIG_SERIAL_TXX9
#include <linux/tty.h>
#include <linux/serial.h>
...
...
@@ -211,7 +212,7 @@ void __init plat_setup(void)
_machine_restart
=
jmr3927_machine_restart
;
_machine_halt
=
jmr3927_machine_halt
;
_machine
_power_off
=
jmr3927_machine_power_off
;
pm
_power_off
=
jmr3927_machine_power_off
;
/*
* IO/MEM resources.
...
...
arch/mips/kernel/reset.c
View file @
fcdb27ad
...
...
@@ -3,13 +3,15 @@
* License. See the file "COPYING" in the main directory of this archive
* for more details.
*
* Copyright (C) 2001
by Ralf Baechle
* Copyright (C) 2001
, 06 by Ralf Baechle (ralf@linux-mips.org)
* Copyright (C) 2001 MIPS Technologies, Inc.
*/
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/pm.h>
#include <linux/types.h>
#include <linux/reboot.h>
#include <asm/reboot.h>
/*
...
...
@@ -19,7 +21,7 @@
*/
void
(
*
_machine_restart
)(
char
*
command
);
void
(
*
_machine_halt
)(
void
);
void
(
*
_machine
_power_off
)(
void
);
void
(
*
pm
_power_off
)(
void
);
void
machine_restart
(
char
*
command
)
{
...
...
@@ -35,6 +37,6 @@ void machine_halt(void)
void
machine_power_off
(
void
)
{
if
(
_machine
_power_off
)
_machine
_power_off
();
if
(
pm
_power_off
)
pm
_power_off
();
}
arch/mips/lasat/reset.c
View file @
fcdb27ad
...
...
@@ -19,9 +19,12 @@
*/
#include <linux/config.h>
#include <linux/kernel.h>
#include <linux/pm.h>
#include <asm/reboot.h>
#include <asm/system.h>
#include <asm/lasat/lasat.h>
#include "picvue.h"
#include "prom.h"
...
...
@@ -63,5 +66,5 @@ void lasat_reboot_setup(void)
{
_machine_restart
=
lasat_machine_restart
;
_machine_halt
=
lasat_machine_halt
;
_machine
_power_off
=
lasat_machine_halt
;
pm
_power_off
=
lasat_machine_halt
;
}
arch/mips/mips-boards/generic/reset.c
View file @
fcdb27ad
...
...
@@ -23,6 +23,7 @@
*
*/
#include <linux/config.h>
#include <linux/pm.h>
#include <asm/io.h>
#include <asm/reboot.h>
...
...
@@ -65,9 +66,9 @@ void mips_reboot_setup(void)
_machine_restart
=
mips_machine_restart
;
_machine_halt
=
mips_machine_halt
;
#if defined(CONFIG_MIPS_ATLAS)
_machine
_power_off
=
atlas_machine_power_off
;
pm
_power_off
=
atlas_machine_power_off
;
#endif
#if defined(CONFIG_MIPS_MALTA) || defined(CONFIG_MIPS_SEAD)
_machine
_power_off
=
mips_machine_halt
;
pm
_power_off
=
mips_machine_halt
;
#endif
}
arch/mips/momentum/jaguar_atx/setup.c
View file @
fcdb27ad
...
...
@@ -50,6 +50,7 @@
#include <linux/pci.h>
#include <linux/swap.h>
#include <linux/ioport.h>
#include <linux/pm.h>
#include <linux/sched.h>
#include <linux/interrupt.h>
#include <linux/timex.h>
...
...
@@ -365,7 +366,7 @@ void __init plat_setup(void)
_machine_restart
=
momenco_jaguar_restart
;
_machine_halt
=
momenco_jaguar_halt
;
_machine
_power_off
=
momenco_jaguar_power_off
;
pm
_power_off
=
momenco_jaguar_power_off
;
/*
* initrd_start = (ulong)jaguar_initrd_start;
...
...
arch/mips/momentum/ocelot_3/setup.c
View file @
fcdb27ad
...
...
@@ -57,6 +57,8 @@
#include <linux/timex.h>
#include <linux/bootmem.h>
#include <linux/mv643xx.h>
#include <linux/pm.h>
#include <asm/time.h>
#include <asm/page.h>
#include <asm/bootinfo.h>
...
...
@@ -321,7 +323,7 @@ void __init plat_setup(void)
_machine_restart
=
momenco_ocelot_restart
;
_machine_halt
=
momenco_ocelot_halt
;
_machine
_power_off
=
momenco_ocelot_power_off
;
pm
_power_off
=
momenco_ocelot_power_off
;
/* Wired TLB entries */
setup_wired_tlb_entries
();
...
...
arch/mips/momentum/ocelot_c/setup.c
View file @
fcdb27ad
...
...
@@ -51,8 +51,10 @@
#include <linux/sched.h>
#include <linux/interrupt.h>
#include <linux/pci.h>
#include <linux/pm.h>
#include <linux/timex.h>
#include <linux/vmalloc.h>
#include <asm/time.h>
#include <asm/bootinfo.h>
#include <asm/page.h>
...
...
@@ -236,7 +238,7 @@ void __init plat_setup(void)
_machine_restart
=
momenco_ocelot_restart
;
_machine_halt
=
momenco_ocelot_halt
;
_machine
_power_off
=
momenco_ocelot_power_off
;
pm
_power_off
=
momenco_ocelot_power_off
;
/*
* initrd_start = (ulong)ocelot_initrd_start;
...
...
arch/mips/momentum/ocelot_g/setup.c
View file @
fcdb27ad
...
...
@@ -47,8 +47,10 @@
#include <linux/sched.h>
#include <linux/interrupt.h>
#include <linux/pci.h>
#include <linux/pm.h>
#include <linux/timex.h>
#include <linux/vmalloc.h>
#include <asm/time.h>
#include <asm/bootinfo.h>
#include <asm/page.h>
...
...
@@ -169,7 +171,7 @@ void __init plat_setup(void)
_machine_restart
=
momenco_ocelot_restart
;
_machine_halt
=
momenco_ocelot_halt
;
_machine
_power_off
=
momenco_ocelot_power_off
;
pm
_power_off
=
momenco_ocelot_power_off
;
/*
* initrd_start = (ulong)ocelot_initrd_start;
...
...
arch/mips/philips/pnx8550/common/setup.c
View file @
fcdb27ad
...
...
@@ -25,6 +25,7 @@
#include <linux/delay.h>
#include <linux/interrupt.h>
#include <linux/serial_ip3106.h>
#include <linux/pm.h>
#include <asm/cpu.h>
#include <asm/bootinfo.h>
...
...
@@ -90,7 +91,7 @@ void __init plat_setup(void)
_machine_restart
=
pnx8550_machine_restart
;
_machine_halt
=
pnx8550_machine_halt
;
_machine
_power_off
=
pnx8550_machine_power_off
;
pm
_power_off
=
pnx8550_machine_power_off
;
board_time_init
=
pnx8550_time_init
;
board_timer_setup
=
pnx8550_timer_setup
;
...
...
arch/mips/pmc-sierra/yosemite/prom.c
View file @
fcdb27ad
...
...
@@ -13,6 +13,7 @@
#include <linux/sched.h>
#include <linux/mm.h>
#include <linux/delay.h>
#include <linux/pm.h>
#include <linux/smp.h>
#include <asm/io.h>
...
...
@@ -92,7 +93,7 @@ void __init prom_init(void)
/* Callbacks for halt, restart */
_machine_restart
=
(
void
(
*
)(
char
*
))
prom_exit
;
_machine_halt
=
prom_halt
;
_machine
_power_off
=
prom_halt
;
pm
_power_off
=
prom_halt
;
debug_vectors
=
cv
;
arcs_cmdline
[
0
]
=
'\0'
;
...
...
arch/mips/sgi-ip22/ip22-reset.c
View file @
fcdb27ad
...
...
@@ -3,7 +3,7 @@
* License. See the file "COPYING" in the main directory of this archive
* for more details.
*
* Copyright (C) 1997, 1998, 2001, 03, 05 by Ralf Baechle
* Copyright (C) 1997, 1998, 2001, 03, 05
, 06
by Ralf Baechle
*/
#include <linux/linkage.h>
#include <linux/init.h>
...
...
@@ -13,6 +13,7 @@
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/notifier.h>
#include <linux/pm.h>
#include <linux/timer.h>
#include <asm/io.h>
...
...
@@ -232,7 +233,7 @@ static int __init reboot_setup(void)
{
_machine_restart
=
sgi_machine_restart
;
_machine_halt
=
sgi_machine_halt
;
_machine
_power_off
=
sgi_machine_power_off
;
pm
_power_off
=
sgi_machine_power_off
;
request_irq
(
SGI_PANEL_IRQ
,
panel_int
,
0
,
"Front Panel"
,
NULL
);
init_timer
(
&
blink_timer
);
...
...
arch/mips/sgi-ip27/ip27-reset.c
View file @
fcdb27ad
...
...
@@ -5,7 +5,7 @@
*
* Reset an IP27.
*
* Copyright (C) 1997, 1998, 1999, 2000 by Ralf Baechle
* Copyright (C) 1997, 1998, 1999, 2000
, 06
by Ralf Baechle
* Copyright (C) 1999, 2000 Silicon Graphics, Inc.
*/
#include <linux/config.h>
...
...
@@ -15,6 +15,7 @@
#include <linux/smp.h>
#include <linux/mmzone.h>
#include <linux/nodemask.h>
#include <linux/pm.h>
#include <asm/io.h>
#include <asm/irq.h>
...
...
@@ -77,5 +78,5 @@ void ip27_reboot_setup(void)
{
_machine_restart
=
ip27_machine_restart
;
_machine_halt
=
ip27_machine_halt
;
_machine
_power_off
=
ip27_machine_power_off
;
pm
_power_off
=
ip27_machine_power_off
;
}
arch/mips/sgi-ip32/ip32-reset.c
View file @
fcdb27ad
...
...
@@ -15,6 +15,7 @@
#include <linux/delay.h>
#include <linux/ds17287rtc.h>
#include <linux/interrupt.h>
#include <linux/pm.h>
#include <asm/addrspace.h>
#include <asm/irq.h>
...
...
@@ -188,7 +189,7 @@ static __init int ip32_reboot_setup(void)
_machine_restart
=
ip32_machine_restart
;
_machine_halt
=
ip32_machine_halt
;
_machine
_power_off
=
ip32_machine_power_off
;
pm
_power_off
=
ip32_machine_power_off
;
init_timer
(
&
blink_timer
);
blink_timer
.
function
=
blink_timeout
;
...
...
arch/mips/sibyte/cfe/setup.c
View file @
fcdb27ad
...
...
@@ -23,6 +23,7 @@
#include <linux/mm.h>
#include <linux/blkdev.h>
#include <linux/bootmem.h>
#include <linux/pm.h>
#include <linux/smp.h>
#include <asm/bootinfo.h>
...
...
@@ -248,7 +249,7 @@ void __init prom_init(void)
_machine_restart
=
cfe_linux_restart
;
_machine_halt
=
cfe_linux_halt
;
_machine
_power_off
=
cfe_linux_halt
;
pm
_power_off
=
cfe_linux_halt
;
/*
* Check if a loader was used; if NOT, the 4 arguments are
...
...
arch/mips/sibyte/sb1250/prom.c
View file @
fcdb27ad
...
...
@@ -24,6 +24,7 @@
#include <linux/bootmem.h>
#include <linux/smp.h>
#include <linux/initrd.h>
#include <linux/pm.h>
#include <asm/bootinfo.h>
#include <asm/reboot.h>
...
...
@@ -79,7 +80,7 @@ void __init prom_init(void)
{
_machine_restart
=
(
void
(
*
)(
char
*
))
prom_linux_exit
;
_machine_halt
=
prom_linux_exit
;
_machine
_power_off
=
prom_linux_exit
;
pm
_power_off
=
prom_linux_exit
;
strcpy
(
arcs_cmdline
,
"root=/dev/ram0 "
);
...
...
arch/mips/sni/setup.c
View file @
fcdb27ad
...
...
@@ -5,7 +5,7 @@
* License. See the file "COPYING" in the main directory of this archive
* for more details.
*
* Copyright (C) 1996, 97, 98, 2000, 03, 04 Ralf Baechle (ralf@linux-mips.org)
* Copyright (C) 1996, 97, 98, 2000, 03, 04
, 06
Ralf Baechle (ralf@linux-mips.org)
*/
#include <linux/config.h>
#include <linux/eisa.h>
...
...
@@ -15,6 +15,7 @@
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/mc146818rtc.h>
#include <linux/pm.h>
#include <linux/pci.h>
#include <linux/console.h>
#include <linux/fb.h>
...
...
@@ -189,7 +190,7 @@ void __init plat_setup(void)
_machine_restart
=
sni_machine_restart
;
_machine_halt
=
sni_machine_halt
;
_machine
_power_off
=
sni_machine_power_off
;
pm
_power_off
=
sni_machine_power_off
;
sni_display_setup
();
...
...
arch/mips/tx4927/toshiba_rbtx4927/toshiba_rbtx4927_setup.c
View file @
fcdb27ad
...
...
@@ -53,6 +53,8 @@
#include <linux/interrupt.h>
#include <linux/pci.h>
#include <linux/timex.h>
#include <linux/pm.h>
#include <asm/bootinfo.h>
#include <asm/page.h>
#include <asm/io.h>
...
...
@@ -814,7 +816,7 @@ void __init toshiba_rbtx4927_setup(void)
":ResetRoutines
\n
"
);
_machine_restart
=
toshiba_rbtx4927_restart
;
_machine_halt
=
toshiba_rbtx4927_halt
;
_machine
_power_off
=
toshiba_rbtx4927_power_off
;
pm
_power_off
=
toshiba_rbtx4927_power_off
;
#ifdef CONFIG_PCI
...
...
arch/mips/tx4938/toshiba_rbtx4938/setup.c
View file @
fcdb27ad
...
...
@@ -20,6 +20,8 @@
#include <linux/interrupt.h>
#include <linux/console.h>
#include <linux/pci.h>
#include <linux/pm.h>
#include <asm/wbflush.h>
#include <asm/reboot.h>
#include <asm/irq.h>
...
...
@@ -1003,7 +1005,7 @@ void __init toshiba_rbtx4938_setup(void)
_machine_restart
=
rbtx4938_machine_restart
;
_machine_halt
=
rbtx4938_machine_halt
;
_machine
_power_off
=
rbtx4938_machine_power_off
;
pm
_power_off
=
rbtx4938_machine_power_off
;
*
rbtx4938_led_ptr
=
0xff
;
printk
(
"RBTX4938 --- FPGA(Rev %02x)"
,
*
rbtx4938_fpga_rev_ptr
);
...
...
arch/mips/vr41xx/common/pmu.c
View file @
fcdb27ad
...
...
@@ -21,6 +21,7 @@
#include <linux/init.h>
#include <linux/ioport.h>
#include <linux/kernel.h>
#include <linux/pm.h>
#include <linux/smp.h>
#include <linux/types.h>
...
...
@@ -114,7 +115,7 @@ static int __init vr41xx_pmu_init(void)
_machine_restart
=
vr41xx_restart
;
_machine_halt
=
vr41xx_halt
;
_machine
_power_off
=
vr41xx_power_off
;
pm
_power_off
=
vr41xx_power_off
;
return
0
;
}
...
...
include/asm-mips/reboot.h
View file @
fcdb27ad
...
...
@@ -3,7 +3,7 @@
* License. See the file "COPYING" in the main directory of this archive
* for more details.
*
* Copyright (C) 1997, 1999, 2001 by Ralf Baechle
* Copyright (C) 1997, 1999, 2001
, 06
by Ralf Baechle
* Copyright (C) 2001 MIPS Technologies, Inc.
*/
#ifndef _ASM_REBOOT_H
...
...
@@ -11,6 +11,5 @@
extern
void
(
*
_machine_restart
)(
char
*
command
);
extern
void
(
*
_machine_halt
)(
void
);
extern
void
(
*
_machine_power_off
)(
void
);
#endif
/* _ASM_REBOOT_H */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment