Fix red (remove accidentally committed debugging code)

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29269 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Sparmann 2011-02-10 00:35:46 +00:00
parent fdf092ebd3
commit 2007d67bce

View file

@ -25,8 +25,6 @@
#include "system-target.h" #include "system-target.h"
#include "pmu-target.h" #include "pmu-target.h"
extern long sleepin, slept;
#define default_interrupt(name) \ #define default_interrupt(name) \
extern __attribute__((weak,alias("UIRQ"))) void name (void) extern __attribute__((weak,alias("UIRQ"))) void name (void)
@ -190,8 +188,6 @@ void irq_handler(void)
asm volatile( "stmfd sp!, {r0-r7, ip, lr} \n" /* Store context */ asm volatile( "stmfd sp!, {r0-r7, ip, lr} \n" /* Store context */
"sub sp, sp, #8 \n"); /* Reserve stack */ "sub sp, sp, #8 \n"); /* Reserve stack */
if (sleepin) slept += USEC_TIMER - sleepin;
sleepin = 0;
void* dummy = VIC0ADDRESS; void* dummy = VIC0ADDRESS;
dummy = VIC1ADDRESS; dummy = VIC1ADDRESS;
uint32_t irqs0 = VIC0IRQSTATUS; uint32_t irqs0 = VIC0IRQSTATUS;