summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2008-03-30 06:06:43 +0000
committerMichael Sevakis <jethead71@rockbox.org>2008-03-30 06:06:43 +0000
commit52527a4d1db31ce4717ee259e1912c50215273a7 (patch)
tree3603b198a5f1a927a055e6c2120a82705acf5dfd
parent5f1590bf4a1da9f6edd11c167e67109e9e06e03a (diff)
downloadrockbox-52527a4d1db31ce4717ee259e1912c50215273a7.tar.gz
rockbox-52527a4d1db31ce4717ee259e1912c50215273a7.zip
Fix red and clean up meg-fx firmware sources. Remove an unused file.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16887 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/SOURCES11
-rw-r--r--firmware/target/arm/s3c2440/gigabeat-fx/dma_start.c8
2 files changed, 5 insertions, 14 deletions
diff --git a/firmware/SOURCES b/firmware/SOURCES
index 645d9ada7a..19b160d8d8 100644
--- a/firmware/SOURCES
+++ b/firmware/SOURCES
@@ -620,19 +620,18 @@ target/arm/s3c2440/gigabeat-fx/adc-meg-fx.c
620target/arm/s3c2440/gigabeat-fx/ata-meg-fx.c 620target/arm/s3c2440/gigabeat-fx/ata-meg-fx.c
621target/arm/s3c2440/gigabeat-fx/backlight-meg-fx.c 621target/arm/s3c2440/gigabeat-fx/backlight-meg-fx.c
622target/arm/s3c2440/gigabeat-fx/button-meg-fx.c 622target/arm/s3c2440/gigabeat-fx/button-meg-fx.c
623target/arm/s3c2440/gigabeat-fx/i2c-meg-fx.c
624target/arm/s3c2440/gigabeat-fx/kernel-meg-fx.c 623target/arm/s3c2440/gigabeat-fx/kernel-meg-fx.c
625target/arm/s3c2440/gigabeat-fx/lcd-meg-fx.c 624target/arm/s3c2440/gigabeat-fx/lcd-meg-fx.c
626target/arm/s3c2440/gigabeat-fx/power-meg-fx.c 625target/arm/s3c2440/gigabeat-fx/power-meg-fx.c
627target/arm/s3c2440/gigabeat-fx/powermgmt-meg-fx.c
628target/arm/s3c2440/gigabeat-fx/sc606-meg-fx.c 626target/arm/s3c2440/gigabeat-fx/sc606-meg-fx.c
629target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
630target/arm/s3c2440/gigabeat-fx/usb-meg-fx.c
631target/arm/s3c2440/gigabeat-fx/wmcodec-meg-fx.c
632target/arm/s3c2440/gigabeat-fx/dma_start.c
633target/arm/s3c2440/gigabeat-fx/system-meg-fx.c 627target/arm/s3c2440/gigabeat-fx/system-meg-fx.c
628target/arm/s3c2440/gigabeat-fx/usb-meg-fx.c
634#ifndef BOOTLOADER 629#ifndef BOOTLOADER
630target/arm/s3c2440/gigabeat-fx/i2c-meg-fx.c
635target/arm/s3c2440/gigabeat-fx/pcm-meg-fx.c 631target/arm/s3c2440/gigabeat-fx/pcm-meg-fx.c
632target/arm/s3c2440/gigabeat-fx/powermgmt-meg-fx.c
633target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
634target/arm/s3c2440/gigabeat-fx/wmcodec-meg-fx.c
636#endif 635#endif
637#endif /* SIMULATOR */ 636#endif /* SIMULATOR */
638#endif /* GIGABEAT_F */ 637#endif /* GIGABEAT_F */
diff --git a/firmware/target/arm/s3c2440/gigabeat-fx/dma_start.c b/firmware/target/arm/s3c2440/gigabeat-fx/dma_start.c
deleted file mode 100644
index c1ab6c15cb..0000000000
--- a/firmware/target/arm/s3c2440/gigabeat-fx/dma_start.c
+++ /dev/null
@@ -1,8 +0,0 @@
1#include <sys/types.h>
2
3void dma_start(const void* addr, size_t size) {
4 (void) addr;
5 (void) size;
6 //TODO:
7}
8