summaryrefslogtreecommitdiff
path: root/flash/bootbox
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2008-09-24 22:03:20 +0000
committerJens Arnold <amiconn@rockbox.org>2008-09-24 22:03:20 +0000
commit0fdee7a86cbef40aded328e7ac45768e9adda953 (patch)
treec720d46e70fd29a5b0bb6cef7f0bb5898f86d7ed /flash/bootbox
parent21893dcada8474042a4e69dcb89a8ba859f38277 (diff)
Clean up bootbox main file.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18637 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'flash/bootbox')
-rw-r--r--flash/bootbox/main.c23
1 files changed, 1 insertions, 22 deletions
diff --git a/flash/bootbox/main.c b/flash/bootbox/main.c
index 96020c3d00..71708675f4 100644
--- a/flash/bootbox/main.c
+++ b/flash/bootbox/main.c
@@ -55,14 +55,12 @@ void usb_screen(void)
}
}
-int show_logo(void)
+void show_logo(void)
{
lcd_clear_display();
lcd_puts(0, 0, "Rockbox");
lcd_puts(0, 1, "Rescue boot");
lcd_update();
-
- return 0;
}
#if CONFIG_CHARGING
@@ -190,7 +188,6 @@ void main(void)
panicf("ata: %d", rc);
}
- //disk_init();
usb_start_monitoring();
while (usb_detect() == USB_INSERTED)
{ /* enter USB mode early, before trying to mount */
@@ -219,15 +216,6 @@ void main(void)
/* These functions are present in the firmware library, but we reimplement
them here because the originals do a lot more than we want */
-void screen_dump(void)
-{
-}
-
-int dbg_ports(void)
-{
- return 0;
-}
-
void audio_stop(void)
{
}
@@ -244,12 +232,3 @@ void audio_stop_recording(void)
void mp3_shutdown(void)
{
}
-/*
-void i2c_init(void)
-{
-}
-
-void backlight_on(void)
-{
-}
-*/