diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2008-04-11 10:39:24 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2008-04-11 10:39:24 +0000 |
| commit | 97e61198a5f549db9dc882a01b2b272292bd2805 (patch) | |
| tree | d23e320be4b6e71635d599c96ae587338fed1a75 /firmware/thread.c | |
| parent | 0b1d7e76d751b9659f4d25be72143cd491704b7e (diff) | |
| download | rockbox-97e61198a5f549db9dc882a01b2b272292bd2805.zip rockbox-97e61198a5f549db9dc882a01b2b272292bd2805.tar.gz rockbox-97e61198a5f549db9dc882a01b2b272292bd2805.tar.bz2 rockbox-97e61198a5f549db9dc882a01b2b272292bd2805.tar.xz | |
iPod Video 30Gig doesn't seem to need the ata locking hack so we'll just attempt to remove it for this one. Works for me on 5.5g.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17071 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/thread.c')
| -rw-r--r-- | firmware/thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/thread.c b/firmware/thread.c index 0049df3..a25a191 100644 --- a/firmware/thread.c +++ b/firmware/thread.c @@ -161,7 +161,7 @@ void switch_thread(void) * Processor-specific section */ -#ifdef MAX_PHYS_SECTOR_SIZE +#if defined(MAX_PHYS_SECTOR_SIZE) && MEM == 64 /* Support a special workaround object for large-sector disks */ #define IF_NO_SKIP_YIELD(...) __VA_ARGS__ #else |