No need to check for chip type here.

This commit is contained in:
imp 2009-04-10 15:18:03 +00:00
parent 0fb392c3cb
commit 0ab5dccb30

View File

@ -512,7 +512,7 @@ ed_pccard_attach(device_t dev)
*/
for (i = 0, sum = 0; i < ETHER_ADDR_LEN; i++)
sum |= sc->enaddr[i];
if (sc->chip_type == ED_CHIP_TYPE_DP8390 && sum == 0) {
if (sum == 0) {
pccard_get_ether(dev, enaddr);
if (bootverbose)
device_printf(dev, "CIS MAC %6D\n", enaddr, ":");