1
0
Fork 0
forked from len0rd/rockbox

Disable the ata locking hack since a recent test strongly suggests it has been resolved as of r17426. Leave the code for now just in case.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17468 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Sevakis 2008-05-11 20:56:27 +00:00
parent da8552ff09
commit 248194164d
2 changed files with 2 additions and 2 deletions

View file

@ -71,7 +71,7 @@
static struct thread_entry *ata_thread_p = NULL; static struct thread_entry *ata_thread_p = NULL;
#endif #endif
#if defined(MAX_PHYS_SECTOR_SIZE) && MEM == 64 #if 0 /* defined(MAX_PHYS_SECTOR_SIZE) && MEM == 64 */
/* Hack - what's the deal with 5g? */ /* Hack - what's the deal with 5g? */
struct ata_lock struct ata_lock
{ {

View file

@ -161,7 +161,7 @@ void switch_thread(void)
* Processor-specific section * Processor-specific section
*/ */
#if defined(MAX_PHYS_SECTOR_SIZE) && MEM == 64 #if 0 /* defined(MAX_PHYS_SECTOR_SIZE) && MEM == 64 */
/* Support a special workaround object for large-sector disks */ /* Support a special workaround object for large-sector disks */
#define IF_NO_SKIP_YIELD(...) __VA_ARGS__ #define IF_NO_SKIP_YIELD(...) __VA_ARGS__
#else #else