示例#1
0
文件: tosa.c 项目: NookieDevs/Quickie
static void tosa_poweroff(void)
{
	arm_machine_restart('g', NULL);
}
示例#2
0
文件: poodle.c 项目: Dutchy18/linux
static void poodle_restart(char mode, const char *cmd)
{
	arm_machine_restart('h', cmd);
}
示例#3
0
static void tegra_pm_restart(char mode, const char *cmd)
{
	tegra_pm_flush_console();
	arm_machine_restart(mode, cmd);
}
示例#4
0
static void poodle_restart(char mode)
{
	arm_machine_restart('h');
}
示例#5
0
文件: poodle.c 项目: Dutchy18/linux
static void poodle_poweroff(void)
{
	arm_machine_restart('h', NULL);
}
示例#6
0
// pxa reset  --------------------------------------------------------
static void falinux_reset(char mode)
{
	RCSR = RCSR_HWR | RCSR_WDR | RCSR_SMR | RCSR_GPR;
	arm_machine_restart('H');
}
示例#7
0
文件: spitz.c 项目: E-LLP/n900
static void spitz_poweroff(void)
{
	arm_machine_restart('g');
}
示例#8
0
static void poodle_restart(char mode)
{
	RCSR = RCSR_HWR | RCSR_WDR | RCSR_SMR | RCSR_GPR;
	arm_machine_restart('h');
}
示例#9
0
static void lschl_power_off(void)
{
	arm_machine_restart('h', NULL);
}
示例#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);
}
示例#14
0
文件: mioa701.c 项目: E-LLP/n900
static void mioa701_restart(char c)
{
	mioa701_machine_exit();
	arm_machine_restart(c);
}