summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bootloader/iaudio_coldfire.c6
-rw-r--r--bootloader/iriver_h1x0.c4
-rw-r--r--bootloader/iriver_h300.c4
-rw-r--r--bootloader/mpio_hd200_hd300.c6
-rw-r--r--firmware/export/screendump.h4
5 files changed, 2 insertions, 22 deletions
diff --git a/bootloader/iaudio_coldfire.c b/bootloader/iaudio_coldfire.c
index c79ab4b0c5..d9e659847a 100644
--- a/bootloader/iaudio_coldfire.c
+++ b/bootloader/iaudio_coldfire.c
@@ -212,9 +212,3 @@ void main(void)
212 212
213 start_firmware(); 213 start_firmware();
214} 214}
215
216/* These functions are present in the firmware library, but we reimplement
217 them here because the originals do a lot more than we want */
218void screen_dump(void)
219{
220}
diff --git a/bootloader/iriver_h1x0.c b/bootloader/iriver_h1x0.c
index 7efaaa3308..6c509a9922 100644
--- a/bootloader/iriver_h1x0.c
+++ b/bootloader/iriver_h1x0.c
@@ -588,10 +588,6 @@ void main(void)
588 588
589/* These functions are present in the firmware library, but we reimplement 589/* These functions are present in the firmware library, but we reimplement
590 them here because the originals do a lot more than we want */ 590 them here because the originals do a lot more than we want */
591void screen_dump(void)
592{
593}
594
595int usb_screen(void) 591int usb_screen(void)
596{ 592{
597 return 0; 593 return 0;
diff --git a/bootloader/iriver_h300.c b/bootloader/iriver_h300.c
index 3a254f4487..655abfa505 100644
--- a/bootloader/iriver_h300.c
+++ b/bootloader/iriver_h300.c
@@ -648,10 +648,6 @@ void main(void)
648 648
649/* These functions are present in the firmware library, but we reimplement 649/* These functions are present in the firmware library, but we reimplement
650 them here because the originals do a lot more than we want */ 650 them here because the originals do a lot more than we want */
651void screen_dump(void)
652{
653}
654
655int usb_screen(void) 651int usb_screen(void)
656{ 652{
657 return 0; 653 return 0;
diff --git a/bootloader/mpio_hd200_hd300.c b/bootloader/mpio_hd200_hd300.c
index 6538c06a31..7067a9d790 100644
--- a/bootloader/mpio_hd200_hd300.c
+++ b/bootloader/mpio_hd200_hd300.c
@@ -539,9 +539,3 @@ void main(void)
539 } 539 }
540 540
541} 541}
542
543/* These functions are present in the firmware library, but we reimplement
544 them here because the originals do a lot more than we want */
545void screen_dump(void)
546{
547}
diff --git a/firmware/export/screendump.h b/firmware/export/screendump.h
index cd7793b9d3..953184c3ac 100644
--- a/firmware/export/screendump.h
+++ b/firmware/export/screendump.h
@@ -54,8 +54,8 @@
54 54
55#ifdef BOOTLOADER 55#ifdef BOOTLOADER
56 56
57#define screen_dump() 57#define screen_dump() do { } while(0)
58#define remote_screen_dump() 58#define remote_screen_dump() do { } while(0)
59 59
60#else /* !BOOTLOADER */ 60#else /* !BOOTLOADER */
61 61