diff options
Diffstat (limited to 'flash/bootbox/main.c')
-rw-r--r-- | flash/bootbox/main.c | 23 |
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) | |||
55 | } | 55 | } |
56 | } | 56 | } |
57 | 57 | ||
58 | int show_logo(void) | 58 | void show_logo(void) |
59 | { | 59 | { |
60 | lcd_clear_display(); | 60 | lcd_clear_display(); |
61 | lcd_puts(0, 0, "Rockbox"); | 61 | lcd_puts(0, 0, "Rockbox"); |
62 | lcd_puts(0, 1, "Rescue boot"); | 62 | lcd_puts(0, 1, "Rescue boot"); |
63 | lcd_update(); | 63 | lcd_update(); |
64 | |||
65 | return 0; | ||
66 | } | 64 | } |
67 | 65 | ||
68 | #if CONFIG_CHARGING | 66 | #if CONFIG_CHARGING |
@@ -190,7 +188,6 @@ void main(void) | |||
190 | panicf("ata: %d", rc); | 188 | panicf("ata: %d", rc); |
191 | } | 189 | } |
192 | 190 | ||
193 | //disk_init(); | ||
194 | usb_start_monitoring(); | 191 | usb_start_monitoring(); |
195 | while (usb_detect() == USB_INSERTED) | 192 | while (usb_detect() == USB_INSERTED) |
196 | { /* enter USB mode early, before trying to mount */ | 193 | { /* enter USB mode early, before trying to mount */ |
@@ -219,15 +216,6 @@ void main(void) | |||
219 | /* These functions are present in the firmware library, but we reimplement | 216 | /* These functions are present in the firmware library, but we reimplement |
220 | them here because the originals do a lot more than we want */ | 217 | them here because the originals do a lot more than we want */ |
221 | 218 | ||
222 | void screen_dump(void) | ||
223 | { | ||
224 | } | ||
225 | |||
226 | int dbg_ports(void) | ||
227 | { | ||
228 | return 0; | ||
229 | } | ||
230 | |||
231 | void audio_stop(void) | 219 | void audio_stop(void) |
232 | { | 220 | { |
233 | } | 221 | } |
@@ -244,12 +232,3 @@ void audio_stop_recording(void) | |||
244 | void mp3_shutdown(void) | 232 | void mp3_shutdown(void) |
245 | { | 233 | { |
246 | } | 234 | } |
247 | /* | ||
248 | void i2c_init(void) | ||
249 | { | ||
250 | } | ||
251 | |||
252 | void backlight_on(void) | ||
253 | { | ||
254 | } | ||
255 | */ | ||