1
0
Fork 0
forked from len0rd/rockbox

M:Robe 500 ATA: Remove pin initializations.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29229 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Karl Kurbjun 2011-02-06 20:37:22 +00:00
parent 161f4465db
commit e932ceb78a

View file

@ -59,12 +59,8 @@ bool ata_is_coldstart(void)
void ata_device_init(void)
{
/* ATA reset */
/* 10: output, non-inverted, no-irq, falling edge, no-chat, normal */
dm320_set_io(10, false, false, false, false, false, 0x00);
ATA_RESET_DISABLE; /* Set the pin to disable an active low reset */
/* ATA INT (currently unused) */
/* 11: input , inverted, irq, any edge, no-chat, normal */
dm320_set_io(11, true, true, true, true, false, 0x00);
/* ATA INT pin 11 (currently unused) */
}