diff options
| author | Marcoen Hirschberg <marcoen@gmail.com> | 2008-06-27 23:44:17 +0000 |
|---|---|---|
| committer | Marcoen Hirschberg <marcoen@gmail.com> | 2008-06-27 23:44:17 +0000 |
| commit | 1d044857899e06709e013480fbe031a6e21b856e (patch) | |
| tree | b442eaac1c1509a5288e7ff3181ed620b32051c3 | |
| parent | 7b10ef9a7c55764d1b6815fd0871cb51ff0205f9 (diff) | |
| download | rockbox-1d044857899e06709e013480fbe031a6e21b856e.zip rockbox-1d044857899e06709e013480fbe031a6e21b856e.tar.gz rockbox-1d044857899e06709e013480fbe031a6e21b856e.tar.bz2 rockbox-1d044857899e06709e013480fbe031a6e21b856e.tar.xz | |
remove leftover debug stuff
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17820 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/export/system.h | 2 | ||||
| -rw-r--r-- | firmware/system.c | 6 |
2 files changed, 0 insertions, 8 deletions
diff --git a/firmware/export/system.h b/firmware/export/system.h index 2f6ceb3..dc38532 100644 --- a/firmware/export/system.h +++ b/firmware/export/system.h @@ -35,8 +35,6 @@ struct flash_header { char version[32]; }; -void UIE(unsigned int pc, unsigned int num); - bool detect_flashed_romimage(void); bool detect_flashed_ramimage(void); bool detect_original_firmware(void); diff --git a/firmware/system.c b/firmware/system.c index 389ecea..7163468 100644 --- a/firmware/system.c +++ b/firmware/system.c @@ -233,18 +233,12 @@ static const char* const uiename[] = { "Divide by zero" }; -int bla(int arg) -{ - return arg+1; -} - /* Unexpected Interrupt or Exception handler. Currently only deals with exceptions, but will deal with interrupts later. */ void UIE(unsigned int pc, unsigned int num) __attribute__((noreturn)); void UIE(unsigned int pc, unsigned int num) { -#warning got here char str[32]; lcd_clear_display(); |