1
0
Fork 0
forked from len0rd/rockbox

Change the remaining set_interrupt_status usage to the more parsimonious disable/enable/restore.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16897 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Sevakis 2008-03-31 06:00:23 +00:00
parent 2ea0206502
commit 75f2d441e9
8 changed files with 15 additions and 17 deletions

View file

@ -60,7 +60,7 @@ bool ide_powered(void)
void power_off(void)
{
/* Disable interrupts on this core */
set_interrupt_status(IRQ_FIQ_DISABLED, IRQ_FIQ_STATUS);
disable_interrupt(IRQ_FIQ_STATUS);
/* Mask them on both cores */
CPU_INT_CLR = -1;