[PATCH] fix voyager compile after machine_emergency_restart breakage
[PATCH] i386: Implement machine_emergency_reboot introduced this new function into arch/i386/reboot.c. However, subarchitectures are entitled to implement their own copies of reboot.c from which this new function is now missing. It looks like visws will also need a similar fixup Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
f9abb02040
commit
e6cb99413d
1 changed files with 7 additions and 0 deletions
|
@ -278,6 +278,13 @@ machine_restart(char *cmd)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
machine_emergency_restart(void)
|
||||||
|
{
|
||||||
|
/*for now, just hook this to a warm restart */
|
||||||
|
machine_restart(NULL);
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
mca_nmi_hook(void)
|
mca_nmi_hook(void)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue