Remove the extra EEPROM reload step I added before. vge_reset()

already does this anyway.
This commit is contained in:
Bill Paul 2005-04-25 23:26:20 +00:00
parent 20fc2576fe
commit 627e5814bc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=145537

View File

@ -300,8 +300,6 @@ vge_read_eeprom(sc, dest, off, cnt, swap)
*ptr = word;
}
#else
CSR_SETBIT_1(sc, VGE_EECSR, VGE_EECSR_RELOAD);
DELAY(500);
for (i = 0; i < ETHER_ADDR_LEN; i++)
dest[i] = CSR_READ_1(sc, VGE_PAR0 + i);
#endif