Beispiel #1
0
static void tosa_poweroff(void)
{
	arm_machine_restart('g', NULL);
}
Beispiel #2
0
static void poodle_restart(char mode, const char *cmd)
{
	arm_machine_restart('h', cmd);
}
Beispiel #3
0
static void tegra_pm_restart(char mode, const char *cmd)
{
	tegra_pm_flush_console();
	arm_machine_restart(mode, cmd);
}
Beispiel #4
0
static void poodle_restart(char mode)
{
	arm_machine_restart('h');
}
Beispiel #5
0
static void poodle_poweroff(void)
{
	arm_machine_restart('h', NULL);
}
Beispiel #6
0
// pxa reset  --------------------------------------------------------
static void falinux_reset(char mode)
{
	RCSR = RCSR_HWR | RCSR_WDR | RCSR_SMR | RCSR_GPR;
	arm_machine_restart('H');
}
Beispiel #7
0
static void spitz_poweroff(void)
{
	arm_machine_restart('g');
}
Beispiel #8
0
static void poodle_restart(char mode)
{
	RCSR = RCSR_HWR | RCSR_WDR | RCSR_SMR | RCSR_GPR;
	arm_machine_restart('h');
}
Beispiel #9
0
static void lschl_power_off(void)
{
	arm_machine_restart('h', NULL);
}
Beispiel #10
0
static void poodle_poweroff(void)
{
	RCSR = RCSR_HWR | RCSR_WDR | RCSR_SMR | RCSR_GPR;
	arm_machine_restart('h');
}
static void mioa701_restart(char c, const char *cmd)
{
	mioa701_machine_exit();
	arm_machine_restart('s', cmd);
}
static void mioa701_poweroff(void)
{
	mioa701_machine_exit();
	arm_machine_restart('s', NULL);
}
static void mid_pm_restart(char mode, const char *cmd) {
	flush_console();
	arm_machine_restart(mode, cmd);
}
Beispiel #14
0
static void mioa701_restart(char c)
{
	mioa701_machine_exit();
	arm_machine_restart(c);
}