set_features() is now called from ata_power_on()
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4309 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
7bd92239ca
commit
867415b3f8
1 changed files with 6 additions and 2 deletions
|
@ -757,11 +757,15 @@ static int ata_power_on(void)
|
||||||
if( ata_hard_reset() )
|
if( ata_hard_reset() )
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
|
rc = set_features();
|
||||||
|
if (rc)
|
||||||
|
return rc * 10 - 2;
|
||||||
|
|
||||||
if (set_multiple_mode(multisectors))
|
if (set_multiple_mode(multisectors))
|
||||||
return -2;
|
return -3;
|
||||||
|
|
||||||
if (freeze_lock())
|
if (freeze_lock())
|
||||||
return -3;
|
return -4;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue