summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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