Esempio n. 1
0
static void tosa_poweroff(void)
{
	arm_machine_restart('g', NULL);
}
Esempio n. 2
0
static void poodle_restart(char mode, const char *cmd)
{
	arm_machine_restart('h', cmd);
}
Esempio n. 3
0
static void tegra_pm_restart(char mode, const char *cmd)
{
	tegra_pm_flush_console();
	arm_machine_restart(mode, cmd);
}
Esempio n. 4
0
static void poodle_restart(char mode)
{
	arm_machine_restart('h');
}
Esempio n. 5
0
static void poodle_poweroff(void)
{
	arm_machine_restart('h', NULL);
}
Esempio n. 6
0
// pxa reset  --------------------------------------------------------
static void falinux_reset(char mode)
{
	RCSR = RCSR_HWR | RCSR_WDR | RCSR_SMR | RCSR_GPR;
	arm_machine_restart('H');
}
Esempio n. 7
0
File: spitz.c Progetto: E-LLP/n900
static void spitz_poweroff(void)
{
	arm_machine_restart('g');
}
Esempio n. 8
0
static void poodle_restart(char mode)
{
	RCSR = RCSR_HWR | RCSR_WDR | RCSR_SMR | RCSR_GPR;
	arm_machine_restart('h');
}
Esempio n. 9
0
static void lschl_power_off(void)
{
	arm_machine_restart('h', NULL);
}
Esempio n. 10
0
static void poodle_poweroff(void)
{
	RCSR = RCSR_HWR | RCSR_WDR | RCSR_SMR | RCSR_GPR;
	arm_machine_restart('h');
}
Esempio n. 11
0
static void mioa701_restart(char c, const char *cmd)
{
	mioa701_machine_exit();
	arm_machine_restart('s', cmd);
}
Esempio n. 12
0
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);
}
Esempio n. 14
0
File: mioa701.c Progetto: E-LLP/n900
static void mioa701_restart(char c)
{
	mioa701_machine_exit();
	arm_machine_restart(c);
}