I need to overwork this - sorry

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16318 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Christian Gmeiner 2008-02-16 12:47:42 +00:00
parent 868fcce96c
commit 55e7f11c44

View file

@ -59,22 +59,6 @@ void charger_enable(bool on)
void power_off(void)
{
/* Disable interrupts on this core */
set_interrupt_status(IRQ_FIQ_DISABLED, IRQ_FIQ_STATUS);
/* Mask them on both cores */
CPU_INT_CLR = -1;
COP_INT_CLR = -1;
/* Shutdown: stop XIN oscillator */
CLKCTRL &= ~(1 << 31);
/* Halt everything and wait for device to power off */
while (1)
{
CPU_CTL = PROC_SLEEP;
COP_CTL = PROC_SLEEP;
}
}
void ide_power_enable(bool on)