[SPARC64]: Fix sparse warnings wrt. machine_alt_power_off().

arch/sparc64/kernel/process.c:123:6: warning: symbol 'machine_alt_power_off' was not declared. Should it be static?

Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
David S. Miller 2008-02-19 20:39:18 -08:00
parent f6d091e051
commit c3c2524031
3 changed files with 8 additions and 2 deletions

View file

@ -20,6 +20,7 @@
#include <asm/of_device.h> #include <asm/of_device.h>
#include <asm/io.h> #include <asm/io.h>
#include <asm/sstate.h> #include <asm/sstate.h>
#include <asm/reboot.h>
#include <linux/unistd.h> #include <linux/unistd.h>
@ -39,8 +40,6 @@ static irqreturn_t power_handler(int irq, void *dev_id)
return IRQ_HANDLED; return IRQ_HANDLED;
} }
extern void machine_halt(void);
extern void machine_alt_power_off(void);
static void (*poweroff_method)(void) = machine_alt_power_off; static void (*poweroff_method)(void) = machine_alt_power_off;
void machine_power_off(void) void machine_power_off(void)

View file

@ -47,6 +47,7 @@
#include <asm/unistd.h> #include <asm/unistd.h>
#include <asm/hypervisor.h> #include <asm/hypervisor.h>
#include <asm/sstate.h> #include <asm/sstate.h>
#include <asm/reboot.h>
/* #define VERBOSE_SHOWREGS */ /* #define VERBOSE_SHOWREGS */

View file

@ -0,0 +1,6 @@
#ifndef _SPARC64_REBOOT_H
#define _SPARC64_REBOOT_H
extern void machine_alt_power_off(void);
#endif /* _SPARC64_REBOOT_H */