summaryrefslogtreecommitdiff
path: root/apps/plugins/wavplay.c
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2008-03-26 01:50:41 +0000
committerMichael Sevakis <jethead71@rockbox.org>2008-03-26 01:50:41 +0000
commitaf395f4db6ad7b83f9d9afefb1c0ceeedd140a45 (patch)
treeb631289b4a3b28d3c65b10d272d50298f377c69f /apps/plugins/wavplay.c
parent74d678fdbcbc427c057e7682ba0a0566e49a8b97 (diff)
downloadrockbox-af395f4db6ad7b83f9d9afefb1c0ceeedd140a45.tar.gz
rockbox-af395f4db6ad7b83f9d9afefb1c0ceeedd140a45.zip
Do core interrupt masking in a less general fashion and save some instructions to decrease size and speed things up a little bit. Small fix to a few places where interrupts would get enabled again where they shouldn't have been (context switching calls when disabled).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16811 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/wavplay.c')
-rw-r--r--apps/plugins/wavplay.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/wavplay.c b/apps/plugins/wavplay.c
index 6a969f187b..bf06787dd9 100644
--- a/apps/plugins/wavplay.c
+++ b/apps/plugins/wavplay.c
@@ -3345,7 +3345,7 @@ void dma_end_isr(void)
3345 3345
3346void demand_irq_enable(bool on) 3346void demand_irq_enable(bool on)
3347{ 3347{
3348 int oldlevel = set_irq_level(HIGHEST_IRQ_LEVEL); 3348 int oldlevel = disable_irq_save();
3349 3349
3350 if(on) 3350 if(on)
3351 { 3351 {
@@ -3357,7 +3357,7 @@ void demand_irq_enable(bool on)
3357 IPRA &= 0xfff0; 3357 IPRA &= 0xfff0;
3358 } 3358 }
3359 3359
3360 set_irq_level(oldlevel); 3360 restore_irq(oldlevel);
3361} 3361}
3362 3362
3363static inline int available(void) 3363static inline int available(void)