summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurus Cuelenaere <mcuelenaere@gmail.com>2009-02-05 22:03:35 +0000
committerMaurus Cuelenaere <mcuelenaere@gmail.com>2009-02-05 22:03:35 +0000
commita7738a352641d2697e1cccb21342ec901485200c (patch)
tree7d71ae17a45a438d18644aa7bfcc61e11534afaf
parentee1e8be37f38dde1e7a34935140f95f13b60685d (diff)
downloadrockbox-a7738a352641d2697e1cccb21342ec901485200c.tar.gz
rockbox-a7738a352641d2697e1cccb21342ec901485200c.zip
Fix red and yellow
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19932 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/export/config-creativezv.h4
-rw-r--r--firmware/export/config-creativezvm60gb.h4
-rw-r--r--firmware/target/arm/tms320dm320/creative-zvm/ata-creativezvm.c3
3 files changed, 8 insertions, 3 deletions
diff --git a/firmware/export/config-creativezv.h b/firmware/export/config-creativezv.h
index 5f0336e538..7a0c814ffc 100644
--- a/firmware/export/config-creativezv.h
+++ b/firmware/export/config-creativezv.h
@@ -165,9 +165,11 @@
165#define BOOTFILE "rockbox." BOOTFILE_EXT 165#define BOOTFILE "rockbox." BOOTFILE_EXT
166#define BOOTDIR "/.rockbox" 166#define BOOTDIR "/.rockbox"
167 167
168#define CONFIG_USBOTG USBOTG_ISP1583 168#define CONFIG_USBOTG USBOTG_ISP1583
169#define HAVE_USBSTACK 169#define HAVE_USBSTACK
170#define USE_ROCKBOX_USB
170#define USB_VENDOR_ID 0x041e 171#define USB_VENDOR_ID 0x041e
171#define USB_PRODUCT_ID 0x4133 172#define USB_PRODUCT_ID 0x4133
173#define USB_NUM_ENDPOINTS 7
172 174
173#endif /* SIMULATOR */ 175#endif /* SIMULATOR */
diff --git a/firmware/export/config-creativezvm60gb.h b/firmware/export/config-creativezvm60gb.h
index a0cf2ba918..490db1f861 100644
--- a/firmware/export/config-creativezvm60gb.h
+++ b/firmware/export/config-creativezvm60gb.h
@@ -166,9 +166,11 @@
166#define BOOTDIR "/.rockbox" 166#define BOOTDIR "/.rockbox"
167 167
168/* #define CONFIG_USBOTG USBOTG_ISP1761 */ 168/* #define CONFIG_USBOTG USBOTG_ISP1761 */
169#define CONFIG_USBOTG USBOTG_ISP1583 169#define CONFIG_USBOTG USBOTG_ISP1583
170#define HAVE_USBSTACK 170#define HAVE_USBSTACK
171#define USE_ROCKBOX_USB
171#define USB_VENDOR_ID 0x041e 172#define USB_VENDOR_ID 0x041e
172#define USB_PRODUCT_ID 0x4133 173#define USB_PRODUCT_ID 0x4133
174#define USB_NUM_ENDPOINTS 7
173 175
174#endif /* SIMULATOR */ 176#endif /* SIMULATOR */
diff --git a/firmware/target/arm/tms320dm320/creative-zvm/ata-creativezvm.c b/firmware/target/arm/tms320dm320/creative-zvm/ata-creativezvm.c
index b945d47b4b..f9acdf5eb2 100644
--- a/firmware/target/arm/tms320dm320/creative-zvm/ata-creativezvm.c
+++ b/firmware/target/arm/tms320dm320/creative-zvm/ata-creativezvm.c
@@ -31,6 +31,7 @@
31#include "ata.h" 31#include "ata.h"
32#include "string.h" 32#include "string.h"
33#include "buffer.h" 33#include "buffer.h"
34#include "logf.h"
34 35
35#undef ata_read_sectors 36#undef ata_read_sectors
36#undef ata_write_sectors 37#undef ata_write_sectors
@@ -363,7 +364,7 @@ static void cfs_init(void)
363 logf("Sector count: %d 0x%x", vfat_sector_count, vfat_sector_count); 364 logf("Sector count: %d 0x%x", vfat_sector_count, vfat_sector_count);
364 } 365 }
365 else 366 else
366 logf("Cannot find virtual FAT filesystem!"); //TODO: panicf 367 panicf("Cannot find virtual FAT filesystem!");
367 368
368 cfs_inited = true; 369 cfs_inited = true;
369} 370}