Subversion Repositories freemyipod

Rev

Rev 543 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 543 Rev 601
Line 29... Line 29...
29
/** static, private data **/ 
29
/** static, private data **/ 
30
uint16_t ata_identify_data[0x100];
30
uint16_t ata_identify_data[0x100];
31
bool ata_lba48;
31
bool ata_lba48;
32
bool ata_dma;
32
bool ata_dma;
33
uint64_t ata_total_sectors;
33
uint64_t ata_total_sectors;
34
static struct mutex ata_mutex;
34
struct mutex ata_mutex;
35
static struct wakeup ata_wakeup;
35
static struct wakeup ata_wakeup;
36
static uint32_t ata_dma_flags;
36
static uint32_t ata_dma_flags;
37
static long ata_last_activity_value = -1;
37
static long ata_last_activity_value = -1;
38
static long ata_sleep_timeout = 20000000;
38
static long ata_sleep_timeout = 20000000;
39
static struct scheduler_thread ata_thread_handle;
39
static struct scheduler_thread ata_thread_handle;