1
0
Fork 0
forked from len0rd/rockbox

Removed unused ata_standby(), changed return type of ata_sleep() to void, removed misleading comment from ata.h

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7782 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2005-11-07 23:19:06 +00:00
parent 77372d1218
commit a8c1c20305
4 changed files with 4 additions and 57 deletions

View file

@ -998,16 +998,8 @@ bool ata_disk_is_active(void)
return mmc_mutex.locked;
}
int ata_standby(int time)
void ata_sleep(void)
{
(void)time;
return 0;
}
int ata_sleep(void)
{
return 0;
}
void ata_spin(void)