예제 #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
파일: poodle.c 프로젝트: 8497165/JetKernel
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');
}
예제 #11
0
static void mioa701_restart(char c, const char *cmd)
{
	mioa701_machine_exit();
	arm_machine_restart('s', cmd);
}
예제 #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);
}
예제 #14
0
파일: mioa701.c 프로젝트: E-LLP/n900
static void mioa701_restart(char c)
{
	mioa701_machine_exit();
	arm_machine_restart(c);
}