mirror of
https://github.com/joel16/android_kernel_sony_msm8994.git
synced 2024-11-28 14:42:16 +00:00
[MIPS] Check function pointers are non-zero before calling.
Several boards don't initialize the pointers, so let's play safe. Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
parent
a3305a8835
commit
9414d3628a
@ -23,16 +23,18 @@ void (*_machine_power_off)(void);
|
||||
|
||||
void machine_restart(char *command)
|
||||
{
|
||||
_machine_restart(command);
|
||||
if (_machine_restart)
|
||||
_machine_restart(command);
|
||||
}
|
||||
|
||||
void machine_halt(void)
|
||||
{
|
||||
_machine_halt();
|
||||
if (_machine_halt)
|
||||
_machine_halt();
|
||||
}
|
||||
|
||||
void machine_power_off(void)
|
||||
{
|
||||
_machine_power_off();
|
||||
if (_machine_power_off)
|
||||
_machine_power_off();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user