freemyipod r340 - Code Review

Jump to: navigation, search
Repository:freemyipod
Revision:r339‎ | r340 | r341 >
Date:20:08, 19 December 2010
Author:theseven
Status:new
Tags:
Comment:
Oops, fix red (add missing #ifdef)
Modified paths:
  • /embios/trunk/target/ipodclassic/storage_ata-target.h (modified) (history)

Diff [purge]

Index: embios/trunk/target/ipodclassic/storage_ata-target.h
@@ -29,10 +29,13 @@
3030
3131 extern uint16_t ata_identify_data[0x100];
3232 extern uint64_t ata_total_sectors;
 33+
 34+#ifdef ATA_HAVE_BBT
3335 extern uint16_t ata_bbt[ATA_BBT_PAGES][0x20];
3436 extern uint64_t ata_virtual_sectors;
3537
3638 int ata_rw_sectors_internal(uint64_t sector, uint32_t count, void* buffer, bool write);
 39+#endif
3740
3841
3942 #endif