diff options
Diffstat (limited to 'bootloader')
| -rw-r--r-- | bootloader/common.c | 8 | ||||
| -rw-r--r-- | bootloader/ipod.c | 10 | ||||
| -rw-r--r-- | bootloader/main-pp.c | 13 | ||||
| -rw-r--r-- | bootloader/telechips.c | 12 | ||||
| -rw-r--r-- | bootloader/tpj1022.c | 10 |
5 files changed, 0 insertions, 53 deletions
diff --git a/bootloader/common.c b/bootloader/common.c index 40e460b..e0401a1 100644 --- a/bootloader/common.c +++ b/bootloader/common.c @@ -229,10 +229,6 @@ int load_raw_firmware(unsigned char* buf, char* firmware, int buffer_size) /* These functions are present in the firmware library, but we reimplement them here because the originals do a lot more than we want */ -void reset_poweroff_timer(void) -{ -} - int dbg_ports(void) { return 0; @@ -241,7 +237,3 @@ int dbg_ports(void) void mpeg_stop(void) { } - -void sys_poweroff(void) -{ -} diff --git a/bootloader/ipod.c b/bootloader/ipod.c index ec5fbd1..d5da776 100644 --- a/bootloader/ipod.c +++ b/bootloader/ipod.c @@ -362,13 +362,3 @@ void* main(void) /* We never get here, but keep gcc happy */ return (void*)0; } - -/* These functions are present in the firmware library, but we reimplement - them here because the originals do a lot more than we want */ -void usb_acknowledge(void) -{ -} - -void usb_wait_for_disconnect(void) -{ -} diff --git a/bootloader/main-pp.c b/bootloader/main-pp.c index f227e0f..b279628 100644 --- a/bootloader/main-pp.c +++ b/bootloader/main-pp.c @@ -628,16 +628,3 @@ void* main(void) return (void*)loadbuffer; } - -#if !defined(SANSA_E200) && !defined(SANSA_C200) && !defined(PHILIPS_SA9200) -/* These functions are present in the firmware library, but we reimplement - them here because the originals do a lot more than we want */ -void usb_acknowledge(void) -{ -} - -void usb_wait_for_disconnect(void) -{ -} -#endif - diff --git a/bootloader/telechips.c b/bootloader/telechips.c index f5abb8c..1e54f5d 100644 --- a/bootloader/telechips.c +++ b/bootloader/telechips.c @@ -240,15 +240,3 @@ void* main(void) return 0; } - -#ifndef HAVE_USBSTACK -/* These functions are present in the firmware library, but we reimplement - them here because the originals do a lot more than we want */ -void usb_acknowledge(void) -{ -} - -void usb_wait_for_disconnect(void) -{ -} -#endif diff --git a/bootloader/tpj1022.c b/bootloader/tpj1022.c index aaf6e9f..7e99f2d 100644 --- a/bootloader/tpj1022.c +++ b/bootloader/tpj1022.c @@ -105,13 +105,3 @@ void* main(void) return 0; } - -/* These functions are present in the firmware library, but we reimplement - them here because the originals do a lot more than we want */ -void usb_acknowledge(void) -{ -} - -void usb_wait_for_disconnect(void) -{ -} |